pub struct InteractionDependencePoint {
pub sample: usize,
pub feature_value: f64,
pub interaction_value: f64,
pub color_value: Option<f64>,
}Fields§
§sample: usize§feature_value: f64§interaction_value: f64§color_value: Option<f64>Trait Implementations§
Source§impl Clone for InteractionDependencePoint
impl Clone for InteractionDependencePoint
Source§fn clone(&self) -> InteractionDependencePoint
fn clone(&self) -> InteractionDependencePoint
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 InteractionDependencePoint
impl Debug for InteractionDependencePoint
Source§impl<'de> Deserialize<'de> for InteractionDependencePoint
impl<'de> Deserialize<'de> for InteractionDependencePoint
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
impl StructuralPartialEq for InteractionDependencePoint
Auto Trait Implementations§
impl Freeze for InteractionDependencePoint
impl RefUnwindSafe for InteractionDependencePoint
impl Send for InteractionDependencePoint
impl Sync for InteractionDependencePoint
impl Unpin for InteractionDependencePoint
impl UnsafeUnpin for InteractionDependencePoint
impl UnwindSafe for InteractionDependencePoint
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