pub struct LoadedRegistry {
pub root: PathBuf,
pub controls: BTreeMap<String, Control>,
pub inventory: Inventory,
pub schedule: Schedule,
pub state: State,
pub config: Config,
}Expand description
The fully-loaded org tree, in memory.
Fields§
§root: PathBuf§controls: BTreeMap<String, Control>§inventory: Inventory§schedule: Schedule§state: State§config: ConfigTrait Implementations§
Source§impl Clone for LoadedRegistry
impl Clone for LoadedRegistry
Source§fn clone(&self) -> LoadedRegistry
fn clone(&self) -> LoadedRegistry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LoadedRegistry
impl RefUnwindSafe for LoadedRegistry
impl Send for LoadedRegistry
impl Sync for LoadedRegistry
impl Unpin for LoadedRegistry
impl UnsafeUnpin for LoadedRegistry
impl UnwindSafe for LoadedRegistry
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