pub struct FlowDocument {
pub id: String,
pub name: Option<String>,
pub summary: Option<String>,
pub schema: Option<Value>,
pub nodes: Vec<FlowNode>,
}Expand description
A validated flow document.
Fields§
§id: String§name: Option<String>§summary: Option<String>§schema: Option<Value>§nodes: Vec<FlowNode>Trait Implementations§
Source§impl Clone for FlowDocument
impl Clone for FlowDocument
Source§fn clone(&self) -> FlowDocument
fn clone(&self) -> FlowDocument
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 FlowDocument
impl Debug for FlowDocument
Source§impl<'de> Deserialize<'de> for FlowDocument
impl<'de> Deserialize<'de> for FlowDocument
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
Auto Trait Implementations§
impl Freeze for FlowDocument
impl RefUnwindSafe for FlowDocument
impl Send for FlowDocument
impl Sync for FlowDocument
impl Unpin for FlowDocument
impl UnwindSafe for FlowDocument
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