pub struct RestoreFactoryMeta {
pub ref_: String,
pub config: Option<GraphCheckpointJson>,
pub config_version: Option<GraphCheckpointJson>,
}Expand description
RestoreFactoryMeta data container.
Fields§
§ref_: Stringref_ field for ref.
config: Option<GraphCheckpointJson>config field for config.
config_version: Option<GraphCheckpointJson>config_version field for config version.
Implementations§
Source§impl RestoreFactoryMeta
impl RestoreFactoryMeta
Sourcepub fn registry_ref(ref_: impl Into<String>) -> Self
pub fn registry_ref(ref_: impl Into<String>) -> Self
Creates or computes registry_ref.
Sourcepub fn with_config(self, config: GraphCheckpointJson) -> Self
pub fn with_config(self, config: GraphCheckpointJson) -> Self
Updates or reads with_config.
Sourcepub fn with_config_version(self, config_version: GraphCheckpointJson) -> Self
pub fn with_config_version(self, config_version: GraphCheckpointJson) -> Self
Updates or reads with_config_version.
Trait Implementations§
Source§impl Clone for RestoreFactoryMeta
impl Clone for RestoreFactoryMeta
Source§fn clone(&self) -> RestoreFactoryMeta
fn clone(&self) -> RestoreFactoryMeta
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RestoreFactoryMeta
impl Debug for RestoreFactoryMeta
Source§impl PartialEq for RestoreFactoryMeta
impl PartialEq for RestoreFactoryMeta
impl StructuralPartialEq for RestoreFactoryMeta
Auto Trait Implementations§
impl Freeze for RestoreFactoryMeta
impl RefUnwindSafe for RestoreFactoryMeta
impl Send for RestoreFactoryMeta
impl Sync for RestoreFactoryMeta
impl Unpin for RestoreFactoryMeta
impl UnsafeUnpin for RestoreFactoryMeta
impl UnwindSafe for RestoreFactoryMeta
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