pub struct FlowchartV2Model {
pub acc_descr: Option<String>,
pub acc_title: Option<String>,
pub class_defs: IndexMap<String, Vec<String>>,
pub direction: Option<String>,
pub edge_defaults: Option<FlowEdgeDefaults>,
pub vertex_calls: Vec<String>,
pub nodes: Vec<FlowNode>,
pub edges: Vec<FlowEdge>,
pub subgraphs: Vec<FlowSubgraph>,
pub tooltips: FxHashMap<String, String>,
}Fields§
§acc_descr: Option<String>§acc_title: Option<String>§class_defs: IndexMap<String, Vec<String>>§direction: Option<String>§edge_defaults: Option<FlowEdgeDefaults>§vertex_calls: Vec<String>§nodes: Vec<FlowNode>§edges: Vec<FlowEdge>§subgraphs: Vec<FlowSubgraph>§tooltips: FxHashMap<String, String>Trait Implementations§
Source§impl Clone for FlowchartV2Model
impl Clone for FlowchartV2Model
Source§fn clone(&self) -> FlowchartV2Model
fn clone(&self) -> FlowchartV2Model
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 FlowchartV2Model
impl Debug for FlowchartV2Model
Source§impl<'de> Deserialize<'de> for FlowchartV2Model
impl<'de> Deserialize<'de> for FlowchartV2Model
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 FlowchartV2Model
impl RefUnwindSafe for FlowchartV2Model
impl Send for FlowchartV2Model
impl Sync for FlowchartV2Model
impl Unpin for FlowchartV2Model
impl UnsafeUnpin for FlowchartV2Model
impl UnwindSafe for FlowchartV2Model
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