pub struct CrossLabelFlow {
pub labels: Vec<String>,
pub flow_matrix: Vec<Vec<i32>>,
pub dependencies: Vec<LabelDependency>,
pub bottleneck_labels: Vec<String>,
pub total_cross_label_deps: usize,
}Fields§
§labels: Vec<String>§flow_matrix: Vec<Vec<i32>>§dependencies: Vec<LabelDependency>§bottleneck_labels: Vec<String>§total_cross_label_deps: usizeTrait Implementations§
Source§impl Clone for CrossLabelFlow
impl Clone for CrossLabelFlow
Source§fn clone(&self) -> CrossLabelFlow
fn clone(&self) -> CrossLabelFlow
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 CrossLabelFlow
impl Debug for CrossLabelFlow
Auto Trait Implementations§
impl Freeze for CrossLabelFlow
impl RefUnwindSafe for CrossLabelFlow
impl Send for CrossLabelFlow
impl Sync for CrossLabelFlow
impl Unpin for CrossLabelFlow
impl UnsafeUnpin for CrossLabelFlow
impl UnwindSafe for CrossLabelFlow
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