Expand description
General utilities for first-party Bevy engine crates.
Re-exports§
Modules§
- Utilities for working with
Future
s. - The utilities prelude.
- A reimplementation of the currently unstable
std::sync::Exclusive
- A reimplementation of the currently unstable
std::cell::SyncUnsafeCell
Macros§
- 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_foo
providing ident tuples through aritystart..=end
. If you require the length of the tuple, seeall_tuples_with_size!
. - Helper macro to generate tuple pyramids with their length. Useful to generate scaffolding to work around Rust lacking variadics. Invoking
all_tuples_with_size!(impl_foo, start, end, P, Q, ..)
invokesimpl_foo
providing ident tuples through aritystart..=end
preceded by their length. If you don’t require the length of the tuple, seeall_tuples!
. - Call
debug!
once per call site. - Like
tracing::trace
, but conditional on cargo featuredetailed_trace
. - Call
error!
once per call site. - Call
info!
once per call site. - Call some expression only once per call site.
- Call
trace!
once per call site. - Call
warn!
once per call site.
Structs§
- A
Hasher
for hashing an arbitrary stream of bytes. - Duration
Non-WebAssembly and std
ADuration
type to represent a span of time, typically used for system timeouts. - A hasher builder that will create a fixed hasher.
- A pre-hashed value of a specific type. Pre-hashing enables memoization of hashes that are expensive to compute.
- Instant
Non-WebAssembly and std
A measurement of a monotonically nondecreasing clock. Opaque and useful only withDuration
. BuildHasher
for types that already contain a high-quality hash.- 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
std
A cohesive set of thread-local values of a given type. - A
BuildHasher
that results in aPassHasher
. - A no-op hash that only works on
u64
s. Will panic if attempting to hash a type containing non-u64 fields. - System
Time Non-WebAssembly and std
A measurement of the system clock, useful for talking to external entities like the file system or other processes. - System
Time Error Non-WebAssembly and std
An error returned from theduration_since
andelapsed
methods onSystemTime
, used to learn how far in the opposite direction a system time lies. - TryFrom
Float Secs Error Non-WebAssembly and std
An error which can be returned when converting a floating-point value of seconds into aDuration
.
Traits§
- Conditional
Send Non-WebAssembly UseConditionalSend
to mark an optional Send trait bound. Useful as on certain platforms (eg. Wasm), futures aren’t Send. - Use
ConditionalSendFuture
for a future with an optional Send trait bound, as on certain platforms (eg. Wasm), futures aren’t Send. - Extension methods intended to add functionality to
PreHashMap
.
Functions§
- Assert that a given
T
is object safe. Will fail to compile if that is not the case. - Calls the
tracing::debug!
macro on a value. - An ergonomic abbreviation for
Default::default()
to make initializing structs easier. - Calls the
tracing::info!
macro on a value.
Type Aliases§
- Boxed
Future alloc
An owned and dynamically typed Future used when you can’t statically type your result or need to add some indirection. - A shortcut alias for
hashbrown::hash_map::Entry
. - A
HashMap
implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps. - A
HashSet
implementing aHash, a high speed keyed hashing algorithm intended for use in in-memory hashmaps. - 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. - A specialized hashmap type with Key of
TypeId
Iteration order only depends on the order of insertions and deletions.