pub struct Registry {
pub dimensions: DimensionRegistry,
pub units: UnitRegistry,
pub types: TypeRegistry,
pub indexes: IndexRegistry,
pub dags: DagRegistry,
}Expand description
The frozen, read-only aggregate of all domain registries.
Produced by RegistryBuilder::build. All fields are public so that
consumers can access individual domain registries directly.
Fields§
§dimensions: DimensionRegistry§units: UnitRegistry§types: TypeRegistry§indexes: IndexRegistry§dags: DagRegistryTrait Implementations§
Auto Trait Implementations§
impl Freeze for Registry
impl RefUnwindSafe for Registry
impl Send for Registry
impl Sync for Registry
impl Unpin for Registry
impl UnsafeUnpin for Registry
impl UnwindSafe for Registry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more