pub struct GraphCheckpointCtxState {
pub persist: bool,
pub value: GraphCheckpointValue,
}Expand description
GraphCheckpointCtxState data container.
Fields§
§persist: boolpersist field for persist.
value: GraphCheckpointValuevalue field for value.
Trait Implementations§
Source§impl Clone for GraphCheckpointCtxState
impl Clone for GraphCheckpointCtxState
Source§fn clone(&self) -> GraphCheckpointCtxState
fn clone(&self) -> GraphCheckpointCtxState
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 GraphCheckpointCtxState
impl Debug for GraphCheckpointCtxState
Source§impl<'de> Deserialize<'de> for GraphCheckpointCtxState
impl<'de> Deserialize<'de> for GraphCheckpointCtxState
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 GraphCheckpointCtxState
impl PartialEq for GraphCheckpointCtxState
Source§impl Serialize for GraphCheckpointCtxState
impl Serialize for GraphCheckpointCtxState
impl StructuralPartialEq for GraphCheckpointCtxState
Auto Trait Implementations§
impl Freeze for GraphCheckpointCtxState
impl RefUnwindSafe for GraphCheckpointCtxState
impl Send for GraphCheckpointCtxState
impl Sync for GraphCheckpointCtxState
impl Unpin for GraphCheckpointCtxState
impl UnsafeUnpin for GraphCheckpointCtxState
impl UnwindSafe for GraphCheckpointCtxState
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