pub struct DecisionPath {
pub sample: usize,
pub feature_order: Vec<usize>,
pub cumulative_values: Vec<f64>,
}Fields§
§sample: usize§feature_order: Vec<usize>§cumulative_values: Vec<f64>Trait Implementations§
Source§impl Clone for DecisionPath
impl Clone for DecisionPath
Source§fn clone(&self) -> DecisionPath
fn clone(&self) -> DecisionPath
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DecisionPath
impl Debug for DecisionPath
Source§impl<'de> Deserialize<'de> for DecisionPath
impl<'de> Deserialize<'de> for DecisionPath
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DecisionPath
impl PartialEq for DecisionPath
Source§impl Serialize for DecisionPath
impl Serialize for DecisionPath
impl StructuralPartialEq for DecisionPath
Auto Trait Implementations§
impl Freeze for DecisionPath
impl RefUnwindSafe for DecisionPath
impl Send for DecisionPath
impl Sync for DecisionPath
impl Unpin for DecisionPath
impl UnsafeUnpin for DecisionPath
impl UnwindSafe for DecisionPath
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