pub struct AnalysisFlowchartFacts {
pub direction: Option<String>,
pub class_defs: BTreeMap<String, Vec<String>>,
pub edge_defaults: Option<AnalysisFlowchartEdgeDefaults>,
pub vertex_calls: Vec<String>,
pub nodes: Vec<AnalysisFlowchartNodeFacts>,
pub edges: Vec<AnalysisFlowchartEdgeFacts>,
pub subgraphs: Vec<AnalysisFlowchartSubgraphFacts>,
pub tooltips: BTreeMap<String, String>,
}Fields§
§direction: Option<String>§class_defs: BTreeMap<String, Vec<String>>§edge_defaults: Option<AnalysisFlowchartEdgeDefaults>§vertex_calls: Vec<String>§nodes: Vec<AnalysisFlowchartNodeFacts>§edges: Vec<AnalysisFlowchartEdgeFacts>§subgraphs: Vec<AnalysisFlowchartSubgraphFacts>§tooltips: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for AnalysisFlowchartFacts
impl Clone for AnalysisFlowchartFacts
Source§fn clone(&self) -> AnalysisFlowchartFacts
fn clone(&self) -> AnalysisFlowchartFacts
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AnalysisFlowchartFacts
impl Debug for AnalysisFlowchartFacts
Source§impl<'de> Deserialize<'de> for AnalysisFlowchartFacts
impl<'de> Deserialize<'de> for AnalysisFlowchartFacts
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 AnalysisFlowchartFacts
impl PartialEq for AnalysisFlowchartFacts
Source§fn eq(&self, other: &AnalysisFlowchartFacts) -> bool
fn eq(&self, other: &AnalysisFlowchartFacts) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AnalysisFlowchartFacts
impl Serialize for AnalysisFlowchartFacts
impl StructuralPartialEq for AnalysisFlowchartFacts
Auto Trait Implementations§
impl Freeze for AnalysisFlowchartFacts
impl RefUnwindSafe for AnalysisFlowchartFacts
impl Send for AnalysisFlowchartFacts
impl Sync for AnalysisFlowchartFacts
impl Unpin for AnalysisFlowchartFacts
impl UnsafeUnpin for AnalysisFlowchartFacts
impl UnwindSafe for AnalysisFlowchartFacts
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