pub struct SequentialGraphState {
pub graph_id: String,
pub status: GraphStatus,
pub steps: Vec<SequentialGraphStepState>,
}Fields§
§graph_id: String§status: GraphStatus§steps: Vec<SequentialGraphStepState>Trait Implementations§
Source§impl Clone for SequentialGraphState
impl Clone for SequentialGraphState
Source§fn clone(&self) -> SequentialGraphState
fn clone(&self) -> SequentialGraphState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SequentialGraphState
impl Debug for SequentialGraphState
Source§impl<'de> Deserialize<'de> for SequentialGraphState
impl<'de> Deserialize<'de> for SequentialGraphState
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 SequentialGraphState
impl PartialEq for SequentialGraphState
Source§fn eq(&self, other: &SequentialGraphState) -> bool
fn eq(&self, other: &SequentialGraphState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SequentialGraphState
impl Serialize for SequentialGraphState
impl StructuralPartialEq for SequentialGraphState
Auto Trait Implementations§
impl Freeze for SequentialGraphState
impl RefUnwindSafe for SequentialGraphState
impl Send for SequentialGraphState
impl Sync for SequentialGraphState
impl Unpin for SequentialGraphState
impl UnsafeUnpin for SequentialGraphState
impl UnwindSafe for SequentialGraphState
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