pub enum GraphCheckpointFactory {
RegistryRef {
ref_: String,
config: Option<GraphCheckpointJson>,
config_version: Option<GraphCheckpointJson>,
},
LocalOnly {
name: String,
reason: String,
},
}Expand description
GraphCheckpointFactory variants.
Variants§
RegistryRef
RegistryRef variant.
Fields
§
config: Option<GraphCheckpointJson>config field for config.
§
config_version: Option<GraphCheckpointJson>config_version field for config version.
LocalOnly
LocalOnly variant.
Trait Implementations§
Source§impl Clone for GraphCheckpointFactory
impl Clone for GraphCheckpointFactory
Source§fn clone(&self) -> GraphCheckpointFactory
fn clone(&self) -> GraphCheckpointFactory
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 GraphCheckpointFactory
impl Debug for GraphCheckpointFactory
Source§impl<'de> Deserialize<'de> for GraphCheckpointFactory
impl<'de> Deserialize<'de> for GraphCheckpointFactory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for GraphCheckpointFactory
impl PartialEq for GraphCheckpointFactory
Source§impl Serialize for GraphCheckpointFactory
impl Serialize for GraphCheckpointFactory
impl StructuralPartialEq for GraphCheckpointFactory
Auto Trait Implementations§
impl Freeze for GraphCheckpointFactory
impl RefUnwindSafe for GraphCheckpointFactory
impl Send for GraphCheckpointFactory
impl Sync for GraphCheckpointFactory
impl Unpin for GraphCheckpointFactory
impl UnsafeUnpin for GraphCheckpointFactory
impl UnwindSafe for GraphCheckpointFactory
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