pub struct CycleBreakSuggestion {
pub from: String,
pub to: String,
pub cycles_broken: usize,
pub collateral_score: f64,
}Fields§
§from: String§to: String§cycles_broken: usize§collateral_score: f64Trait Implementations§
Source§impl Clone for CycleBreakSuggestion
impl Clone for CycleBreakSuggestion
Source§fn clone(&self) -> CycleBreakSuggestion
fn clone(&self) -> CycleBreakSuggestion
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 CycleBreakSuggestion
impl Debug for CycleBreakSuggestion
Auto Trait Implementations§
impl Freeze for CycleBreakSuggestion
impl RefUnwindSafe for CycleBreakSuggestion
impl Send for CycleBreakSuggestion
impl Sync for CycleBreakSuggestion
impl Unpin for CycleBreakSuggestion
impl UnsafeUnpin for CycleBreakSuggestion
impl UnwindSafe for CycleBreakSuggestion
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