pub enum RestyleSankey<V>{
Show 16 variants
ModifyArrangement {
arrangement: Option<Dim<Arrangement>>,
},
ModifyDomain {
domain: Option<Dim<Domain>>,
},
ModifyIds {
ids: Option<Dim<Vec<String>>>,
},
ModifyHoverInfo {
hover_info: Option<Dim<HoverInfo>>,
},
ModifyHoverLabel {
hover_label: Option<Dim<Label>>,
},
ModifyLegendGroupTitle {
legend_group_title: Option<Dim<LegendGroupTitle>>,
},
ModifyLegendRank {
legend_rank: Option<Dim<usize>>,
},
ModifyLink {
link: Option<Dim<Link<V>>>,
},
ModifyName {
name: Option<Dim<String>>,
},
ModifyNode {
node: Option<Dim<Node>>,
},
ModifyOrientation {
orientation: Option<Dim<Orientation>>,
},
ModifySelectedPoints {
selected_points: Option<Dim<Vec<usize>>>,
},
ModifyTextFont {
text_font: Option<Dim<Font>>,
},
ModifyValueFormat {
value_format: Option<Dim<String>>,
},
ModifyValueSuffix {
value_suffix: Option<Dim<String>>,
},
ModifyVisible {
visible: Option<Dim<bool>>,
},
}
Variants§
ModifyArrangement
Fields
§
arrangement: Option<Dim<Arrangement>>
ModifyDomain
ModifyIds
ModifyHoverInfo
ModifyHoverLabel
ModifyLegendGroupTitle
Fields
§
legend_group_title: Option<Dim<LegendGroupTitle>>
ModifyLegendRank
ModifyLink
ModifyName
ModifyNode
ModifyOrientation
Fields
§
orientation: Option<Dim<Orientation>>
ModifySelectedPoints
ModifyTextFont
ModifyValueFormat
ModifyValueSuffix
ModifyVisible
Trait Implementations§
Source§impl<V> Clone for RestyleSankey<V>
impl<V> Clone for RestyleSankey<V>
Source§fn clone(&self) -> RestyleSankey<V>
fn clone(&self) -> RestyleSankey<V>
Returns a copy 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<V> Serialize for RestyleSankey<V>
impl<V> Serialize for RestyleSankey<V>
impl<V> Restyle for RestyleSankey<V>
Auto Trait Implementations§
impl<V> Freeze for RestyleSankey<V>
impl<V> !RefUnwindSafe for RestyleSankey<V>
impl<V> Send for RestyleSankey<V>where
V: Send,
impl<V> Sync for RestyleSankey<V>where
V: Sync,
impl<V> Unpin for RestyleSankey<V>where
V: Unpin,
impl<V> !UnwindSafe for RestyleSankey<V>
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