pub struct FlowDiagram {
pub diagram: String,
}
Expand description
FlowDiagram : response of the flow’s diagram action
Fields§
§diagram: String
Implementations§
Source§impl FlowDiagram
impl FlowDiagram
Sourcepub fn new(diagram: String) -> FlowDiagram
pub fn new(diagram: String) -> FlowDiagram
response of the flow’s diagram action
Trait Implementations§
Source§impl Clone for FlowDiagram
impl Clone for FlowDiagram
Source§fn clone(&self) -> FlowDiagram
fn clone(&self) -> FlowDiagram
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 FlowDiagram
impl Debug for FlowDiagram
Source§impl Default for FlowDiagram
impl Default for FlowDiagram
Source§fn default() -> FlowDiagram
fn default() -> FlowDiagram
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FlowDiagram
impl<'de> Deserialize<'de> for FlowDiagram
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 FlowDiagram
impl PartialEq for FlowDiagram
Source§impl Serialize for FlowDiagram
impl Serialize for FlowDiagram
impl StructuralPartialEq for FlowDiagram
Auto Trait Implementations§
impl Freeze for FlowDiagram
impl RefUnwindSafe for FlowDiagram
impl Send for FlowDiagram
impl Sync for FlowDiagram
impl Unpin for FlowDiagram
impl UnwindSafe for FlowDiagram
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