pub enum Defuzzifiers {
Centroid,
Bisection,
Custom(fn(Vec<f64>, &Vec<f64>) -> f64),
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Defuzzifiers
impl RefUnwindSafe for Defuzzifiers
impl Send for Defuzzifiers
impl Sync for Defuzzifiers
impl Unpin for Defuzzifiers
impl UnwindSafe for Defuzzifiers
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