[][src]Struct tensorflow_serving_client::feature::FeatureList

pub struct FeatureList {
    pub feature: RepeatedField<Feature>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

feature: RepeatedField<Feature>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl FeatureList[src]

pub fn new() -> FeatureList[src]

pub fn get_feature(&self) -> &[Feature][src]

pub fn clear_feature(&mut self)[src]

pub fn set_feature(&mut self, v: RepeatedField<Feature>)[src]

pub fn mut_feature(&mut self) -> &mut RepeatedField<Feature>[src]

pub fn take_feature(&mut self) -> RepeatedField<Feature>[src]

Trait Implementations

impl Clear for FeatureList[src]

impl Clone for FeatureList[src]

impl Debug for FeatureList[src]

impl Default for FeatureList[src]

impl<'a> Default for &'a FeatureList[src]

impl Message for FeatureList[src]

impl PartialEq<FeatureList> for FeatureList[src]

impl ProtobufValue for FeatureList[src]

impl StructuralPartialEq for FeatureList[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.