Crate abstutil[−][src]
The contents of this crate need to be organized better:
- Timer (a mix of logging, profiling, and even parallel execution)
- true utility functions (collections, prettyprinting, CLI parsing
Re-exports
pub use time::*; |
Modules
cli | |
collections | |
logger | |
process | |
serde | |
time | |
utils |
Structs
CmdArgs | Yet another barebones command-line flag parsing library. |
Counter | |
FixedMap | A drop-in replacement for |
MultiMap | |
Tags | Convenience functions around a string->string map |
VecMap | Use when your key is just PartialEq, not Ord or Hash. |
Constants
PROGRESS_FREQUENCY_SECONDS |
Traits
IndexableKey | Use with |
Functions
abbreviated_format | |
basename | |
contains_duplicates | |
deserialize_btreemap | Deserializes a BTreeMap from a list of tuples. Necessary when the keys are structs; see https://github.com/serde-rs/json/issues/402. |
deserialize_hashmap | Deserializes a HashMap from a list of tuples. |
deserialize_multimap | Deserializes a MultiMap. |
deserialize_usize | Deserializes a |
from_binary | Deserializes an object from the bincode format. |
from_binary_reader | Deserializes an object from the bincode format, from a reader. |
from_json | Deserializes an object from a JSON string. |
from_json_reader | Deserializes an object from JSON, from a reader. |
must_run_cmd | Runs a command, asserts success. STDOUT and STDERR aren’t touched. |
parent_path | |
plain_list_names | |
prettyprint_usize | |
retain_btreemap | |
retain_btreeset | |
serialize_btreemap | Serializes a BTreeMap as a list of tuples. Necessary when the keys are structs; see https://github.com/serde-rs/json/issues/402. |
serialize_hashmap | Serializes a HashMap as a list of tuples, first sorting by the keys. This ensures the serialized form is deterministic. |
serialize_multimap | Serializes a MultiMap. |
serialize_usize | Serializes a |
serialized_size_bytes | The number of bytes for an object serialized to bincode. |
setup | On native: uses env_log |
to_json | Stringifies an object to nicely formatted JSON. |
to_json_terse | Stringifies an object to terse JSON. |
wraparound_get |