pub struct FlowNodeDef {
pub id: FlowNodeId,
pub flow: FlowId,
pub node_type: u8,
pub data: Blob,
}Expand description
Catalog definition for a flow node The node type and its data are stored as a type discriminator and serialized blob
Fields§
§id: FlowNodeId§flow: FlowId§node_type: u8§data: BlobTrait Implementations§
Source§impl Clone for FlowNodeDef
impl Clone for FlowNodeDef
Source§fn clone(&self) -> FlowNodeDef
fn clone(&self) -> FlowNodeDef
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 FlowNodeDef
impl Debug for FlowNodeDef
Source§impl PartialEq for FlowNodeDef
impl PartialEq for FlowNodeDef
impl StructuralPartialEq for FlowNodeDef
Auto Trait Implementations§
impl Freeze for FlowNodeDef
impl RefUnwindSafe for FlowNodeDef
impl Send for FlowNodeDef
impl Sync for FlowNodeDef
impl Unpin for FlowNodeDef
impl UnwindSafe for FlowNodeDef
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