pub enum GraphCheckpointValue {
Sentinel,
Data {
data: GraphCheckpointJson,
},
}Expand description
GraphCheckpointValue variants.
Variants§
Trait Implementations§
Source§impl Clone for GraphCheckpointValue
impl Clone for GraphCheckpointValue
Source§fn clone(&self) -> GraphCheckpointValue
fn clone(&self) -> GraphCheckpointValue
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 GraphCheckpointValue
impl Debug for GraphCheckpointValue
Source§impl<'de> Deserialize<'de> for GraphCheckpointValue
impl<'de> Deserialize<'de> for GraphCheckpointValue
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 GraphCheckpointValue
impl PartialEq for GraphCheckpointValue
Source§impl Serialize for GraphCheckpointValue
impl Serialize for GraphCheckpointValue
impl StructuralPartialEq for GraphCheckpointValue
Auto Trait Implementations§
impl Freeze for GraphCheckpointValue
impl RefUnwindSafe for GraphCheckpointValue
impl Send for GraphCheckpointValue
impl Sync for GraphCheckpointValue
impl Unpin for GraphCheckpointValue
impl UnsafeUnpin for GraphCheckpointValue
impl UnwindSafe for GraphCheckpointValue
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