pub enum DecisionKind {
LEAF,
INTERNAL,
DISTRIBUTE,
}Variants§
Trait Implementations§
Source§impl Clone for DecisionKind
impl Clone for DecisionKind
Source§fn clone(&self) -> DecisionKind
fn clone(&self) -> DecisionKind
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 Default for DecisionKind
impl Default for DecisionKind
Source§fn default() -> DecisionKind
fn default() -> DecisionKind
Returns the “default value” for a type. Read more
Source§impl PartialEq for DecisionKind
impl PartialEq for DecisionKind
impl Copy for DecisionKind
impl StructuralPartialEq for DecisionKind
Auto Trait Implementations§
impl Freeze for DecisionKind
impl RefUnwindSafe for DecisionKind
impl Send for DecisionKind
impl Sync for DecisionKind
impl Unpin for DecisionKind
impl UnwindSafe for DecisionKind
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