Struct config_it::storage::ExportOptions
source · pub struct ExportOptions {
pub merge_onto_dumped: bool,
pub replace_import_cache: bool,
}Fields§
§merge_onto_dumped: boolOn export, storage collects only active instances of config groups. If this is set to true, collected result will be merged onto existing dump cache, thus it will preserve uninitialized config groups’ archive data.
Otherwise, only active config groups will be exported.
replace_import_cache: boolIf this option is set true, storage will replace import cache with dumped export data. This will affect the next config group creation.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ExportOptions
impl Send for ExportOptions
impl Sync for ExportOptions
impl Unpin for ExportOptions
impl UnwindSafe for ExportOptions
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