pub struct GraphFlow {
pub condition: Option<Box<GraphCondition>>,
pub source: String,
pub target: String,
}Fields§
§condition: Option<Box<GraphCondition>>§source: StringReference to the ID of the node that is the source of the flow.
target: StringReference to the ID of the node that is the target of the flow.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphFlow
impl<'de> Deserialize<'de> for GraphFlow
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
impl StructuralPartialEq for GraphFlow
Auto Trait Implementations§
impl Freeze for GraphFlow
impl RefUnwindSafe for GraphFlow
impl Send for GraphFlow
impl Sync for GraphFlow
impl Unpin for GraphFlow
impl UnwindSafe for GraphFlow
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