Expand description
General utilities for first-party Bevy engine crates.
Re-exports§
pub use hashbrown;pub use tracing;
Modules§
- futures
- Utilities for working with
Futures. - prelude
- synccell
- A reimplementation of the currently unstable
std::sync::Exclusive - syncunsafecell
- A reimplementation of the currently unstable
std::cell::SyncUnsafeCell
Macros§
- all_
tuples - Helper macro to generate tuple pyramids. Useful to generate scaffolding to work around Rust
lacking variadics. Invoking
all_tuples!(impl_foo, start, end, P, Q, ..)invokesimpl_fooproviding ident tuples through aritystart..=end. - all_
tuples_ with_ size - debug_
once - Call
debug!once per call site. - detailed_
trace - Like
tracing::trace, but conditional on cargo featuredetailed_trace. - error_
once - Call
error!once per call site. - info_
once - Call
info!once per call site. - once
- Call some expression only once per call site.
- trace_
once - Call
trace!once per call site. - warn_
once - Call
warn!once per call site.
Structs§
- AHasher
- A
Hasherfor hashing an arbitrary stream of bytes. - Duration
- A
Durationtype to represent a span of time, typically used for system timeouts. - Entity
Hash - A
BuildHasherthat results in aEntityHasher. - Entity
Hasher - A very fast hash that is only designed to work on generational indices
like
Entity. It will panic if attempting to hash a type containing non-u64 fields. - Fixed
State - A hasher builder that will create a fixed hasher.
- Hashed
- A pre-hashed value of a specific type. Pre-hashing enables memoization of hashes that are expensive to compute.
It also enables faster
PartialEqcomparisons by short circuiting on hash equality. SeePassHashandPassHasherfor a “pass through”BuildHasherandHasherimplementation designed to work withHashedSeePreHashMapfor a hashmap pre-configured to useHashedkeys. - Instant
- A measurement of a monotonically nondecreasing clock.
Opaque and useful only with
Duration. - NoOp
Hash BuildHasherfor types that already contain a high-quality hash.- OnDrop
- A type which calls a function when dropped. This can be used to ensure that cleanup code is run even in case of a panic.
- Parallel
- A cohesive set of thread-local values of a given type.
- Pass
Hash - A
BuildHasherthat results in aPassHasher. - Pass
Hasher - A no-op hash that only works on
u64s. Will panic if attempting to hash a type containing non-u64 fields. - Random
State - Provides a Hasher factory. This is typically used (e.g. by HashMap) to create
AHashers in order to hash the keys of the map. See
build_hasherbelow. - System
Time - A measurement of the system clock, useful for talking to external entities like the file system or other processes.
- System
Time Error - An error returned from the
duration_sinceandelapsedmethods onSystemTime, used to learn how far in the opposite direction a system time lies. - TryFrom
Float Secs Error - An error which can be returned when converting a floating-point value of seconds
into a
Duration.
Enums§
- CowArc
- Much like a
Cow, but owned values are Arc-ed to make clones cheap. This should be used for values that are cloned for use across threads and change rarely (if ever).
Traits§
- Conditional
Send - Use
ConditionalSendto mark an optional Send trait bound. Useful as on certain platforms (eg. WASM), futures aren’t Send. - Conditional
Send Future - Use
ConditionalSendFuturefor a future with an optional Send trait bound, as on certain platforms (eg. WASM), futures aren’t Send. - PreHash
MapExt - Extension methods intended to add functionality to
PreHashMap.
Functions§
- dbg
- Calls the
tracing::debug!macro on a value. - default
- An ergonomic abbreviation for
Default::default()to make initializing structs easier. This is especially helpful when combined with “struct update syntax”. - error
- Processes a
Resultby calling thetracing::error!macro in case of anErrvalue. - get_
short_ name - Shortens a type name to remove all module paths.
- info
- Calls the
tracing::info!macro on a value. - warn
- Processes a
Resultby calling thetracing::warn!macro in case of anErrvalue.
Type Aliases§
- Boxed
Future - An owned and dynamically typed Future used when you can’t statically type your result or need to add some indirection.
- Entity
Hash Map - A
HashMappre-configured to useEntityHashhashing. Iteration order only depends on the order of insertions and deletions. - Entity
Hash Set - A
HashSetpre-configured to useEntityHashhashing. Iteration order only depends on the order of insertions and deletions. - Entry
- A shortcut alias for [
hashbrown::hash_map::Entry]. - HashMap
- A [
HashMap][hashbrown::HashMap] implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps. - HashSet
- A [
HashSet][hashbrown::HashSet] implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps. - PreHash
Map - A
HashMappre-configured to useHashedkeys andPassHashpassthrough hashing. Iteration order only depends on the order of insertions and deletions. - Stable
Hash Map Deprecated - A stable hash map implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps.
- Stable
Hash Set Deprecated - A stable hash set implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps.
- Type
IdMap - A specialized hashmap type with Key of
TypeIdIteration order only depends on the order of insertions and deletions.