pub struct GraphCheckpoint {
pub version: String,
pub name: Option<String>,
pub nodes: Vec<GraphCheckpointNode>,
pub edges: Vec<GraphCheckpointEdge>,
pub mounts: Option<Vec<GraphCheckpointMount>>,
}Expand description
GraphCheckpoint data container.
Fields§
§version: Stringversion field for version.
name: Option<String>name field for name.
nodes: Vec<GraphCheckpointNode>nodes field for nodes.
edges: Vec<GraphCheckpointEdge>edges field for edges.
mounts: Option<Vec<GraphCheckpointMount>>mounts field for mounts.
Trait Implementations§
Source§impl Clone for GraphCheckpoint
impl Clone for GraphCheckpoint
Source§fn clone(&self) -> GraphCheckpoint
fn clone(&self) -> GraphCheckpoint
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 GraphCheckpoint
impl Debug for GraphCheckpoint
Source§impl<'de> Deserialize<'de> for GraphCheckpoint
impl<'de> Deserialize<'de> for GraphCheckpoint
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 GraphCheckpoint
impl PartialEq for GraphCheckpoint
Source§impl Serialize for GraphCheckpoint
impl Serialize for GraphCheckpoint
impl StructuralPartialEq for GraphCheckpoint
Auto Trait Implementations§
impl Freeze for GraphCheckpoint
impl RefUnwindSafe for GraphCheckpoint
impl Send for GraphCheckpoint
impl Sync for GraphCheckpoint
impl Unpin for GraphCheckpoint
impl UnsafeUnpin for GraphCheckpoint
impl UnwindSafe for GraphCheckpoint
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