pub struct LoadedHome {
pub orchestration: Orchestration,
pub vault: BTreeMap<String, String>,
pub io: BTreeMap<String, ProfileIo>,
}Expand description
A loaded home.
Fields§
§orchestration: OrchestrationThe orchestration.
vault: BTreeMap<String, String>Secret values by .env key; never in the orchestration.
io: BTreeMap<String, ProfileIo>Per-profile bookkeeping.
Trait Implementations§
Source§impl Clone for LoadedHome
impl Clone for LoadedHome
Source§fn clone(&self) -> LoadedHome
fn clone(&self) -> LoadedHome
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 LoadedHome
impl RefUnwindSafe for LoadedHome
impl Send for LoadedHome
impl Sync for LoadedHome
impl Unpin for LoadedHome
impl UnsafeUnpin for LoadedHome
impl UnwindSafe for LoadedHome
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