pub struct LoadReport {
pub config: Config,
pub untouched: Vec<ConfigItem>,
pub extra: Vec<ConfigItem>,
}Expand description
Result of loading and updating config state before output generation.
Fields§
§config: ConfigConfig after specs, old config, and write overrides have been applied.
untouched: Vec<ConfigItem>Config items that were not present in the old config.
extra: Vec<ConfigItem>Old config items that are not present in the specification.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadReport
impl RefUnwindSafe for LoadReport
impl Send for LoadReport
impl Sync for LoadReport
impl Unpin for LoadReport
impl UnsafeUnpin for LoadReport
impl UnwindSafe for LoadReport
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