pub struct AnalysisFlowchartEdgeFacts {Show 13 fields
pub id: String,
pub from: String,
pub to: String,
pub label: Option<String>,
pub label_type: Option<String>,
pub edge_type: Option<String>,
pub stroke: Option<String>,
pub interpolate: Option<String>,
pub classes: Vec<String>,
pub style: Vec<String>,
pub animate: Option<bool>,
pub animation: Option<String>,
pub length: usize,
}Fields§
§id: String§from: String§to: String§label: Option<String>§label_type: Option<String>§edge_type: Option<String>§stroke: Option<String>§interpolate: Option<String>§classes: Vec<String>§style: Vec<String>§animate: Option<bool>§animation: Option<String>§length: usizeTrait Implementations§
Source§impl Clone for AnalysisFlowchartEdgeFacts
impl Clone for AnalysisFlowchartEdgeFacts
Source§fn clone(&self) -> AnalysisFlowchartEdgeFacts
fn clone(&self) -> AnalysisFlowchartEdgeFacts
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 AnalysisFlowchartEdgeFacts
impl Debug for AnalysisFlowchartEdgeFacts
Source§impl<'de> Deserialize<'de> for AnalysisFlowchartEdgeFacts
impl<'de> Deserialize<'de> for AnalysisFlowchartEdgeFacts
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 AnalysisFlowchartEdgeFacts
impl PartialEq for AnalysisFlowchartEdgeFacts
Source§fn eq(&self, other: &AnalysisFlowchartEdgeFacts) -> bool
fn eq(&self, other: &AnalysisFlowchartEdgeFacts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AnalysisFlowchartEdgeFacts
Auto Trait Implementations§
impl Freeze for AnalysisFlowchartEdgeFacts
impl RefUnwindSafe for AnalysisFlowchartEdgeFacts
impl Send for AnalysisFlowchartEdgeFacts
impl Sync for AnalysisFlowchartEdgeFacts
impl Unpin for AnalysisFlowchartEdgeFacts
impl UnsafeUnpin for AnalysisFlowchartEdgeFacts
impl UnwindSafe for AnalysisFlowchartEdgeFacts
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