pub struct MinCutConfig {
pub epsilon: f32,
pub local_search_depth: usize,
pub cache_cuts: bool,
}Fields§
§epsilon: f32§local_search_depth: usize§cache_cuts: boolTrait Implementations§
Source§impl Clone for MinCutConfig
impl Clone for MinCutConfig
Source§fn clone(&self) -> MinCutConfig
fn clone(&self) -> MinCutConfig
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 MinCutConfig
impl Debug for MinCutConfig
Auto Trait Implementations§
impl Freeze for MinCutConfig
impl RefUnwindSafe for MinCutConfig
impl Send for MinCutConfig
impl Sync for MinCutConfig
impl Unpin for MinCutConfig
impl UnsafeUnpin for MinCutConfig
impl UnwindSafe for MinCutConfig
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