pub struct FlowgraphDescription {
pub blocks: Vec<BlockDescription>,
pub stream_edges: Vec<(BlockId, PortId, BlockId, PortId)>,
pub message_edges: Vec<(BlockId, PortId, BlockId, PortId)>,
}Expand description
Description of a Flowgraph.
This struct can be serialized to be used with the REST API.
Fields§
§blocks: Vec<BlockDescription>Blocks
stream_edges: Vec<(BlockId, PortId, BlockId, PortId)>Stream edges
message_edges: Vec<(BlockId, PortId, BlockId, PortId)>Message edges
Trait Implementations§
Source§impl Clone for FlowgraphDescription
impl Clone for FlowgraphDescription
Source§fn clone(&self) -> FlowgraphDescription
fn clone(&self) -> FlowgraphDescription
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 FlowgraphDescription
impl Debug for FlowgraphDescription
Source§impl<'de> Deserialize<'de> for FlowgraphDescription
impl<'de> Deserialize<'de> for FlowgraphDescription
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 FlowgraphDescription
impl RefUnwindSafe for FlowgraphDescription
impl Send for FlowgraphDescription
impl Sync for FlowgraphDescription
impl Unpin for FlowgraphDescription
impl UnwindSafe for FlowgraphDescription
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