[][src]Struct tensorflow_proto::tensorflow::decision_trees::MatchingValuesTest

pub struct MatchingValuesTest {
    pub feature_id: Option<FeatureId>,
    pub value: Vec<Value>,
    pub inverse: bool,
}

Used in generic_tree_model.BinaryNode.left_child_test. Tests whether the feature's value belongs to the specified list, (or does not belong if inverse=True). For empty list use ConstResultTest instead.

Fields

feature_id: Option<FeatureId>

When the feature is missing, the test's outcome is undefined.

value: Vec<Value>inverse: bool

Trait Implementations

impl Clone for MatchingValuesTest[src]

impl Debug for MatchingValuesTest[src]

impl Default for MatchingValuesTest[src]

impl Message for MatchingValuesTest[src]

impl PartialEq<MatchingValuesTest> for MatchingValuesTest[src]

impl StructuralPartialEq for MatchingValuesTest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.