pub struct Loaded {
pub config: Config,
pub secrets: Secrets,
pub effective: EffectiveConfig,
}Expand description
A configuration, the credentials behind it, and where every setting came from.
Fields§
§config: ConfigThe configuration itself.
secrets: SecretsWhere a plugin’s named credential is looked up. Read before sources resolve.
effective: EffectiveConfigEvery setting with the layer it came from, for config show.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Loaded
impl RefUnwindSafe for Loaded
impl Send for Loaded
impl Sync for Loaded
impl Unpin for Loaded
impl UnsafeUnpin for Loaded
impl UnwindSafe for Loaded
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