[][src]Struct tensorflow_serving_client::example::SequenceExample

pub struct SequenceExample {
    pub context: SingularPtrField<Features>,
    pub feature_lists: SingularPtrField<FeatureLists>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

context: SingularPtrField<Features>feature_lists: SingularPtrField<FeatureLists>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl SequenceExample[src]

pub fn new() -> SequenceExample[src]

pub fn get_context(&self) -> &Features[src]

pub fn clear_context(&mut self)[src]

pub fn has_context(&self) -> bool[src]

pub fn set_context(&mut self, v: Features)[src]

pub fn mut_context(&mut self) -> &mut Features[src]

pub fn take_context(&mut self) -> Features[src]

pub fn get_feature_lists(&self) -> &FeatureLists[src]

pub fn clear_feature_lists(&mut self)[src]

pub fn has_feature_lists(&self) -> bool[src]

pub fn set_feature_lists(&mut self, v: FeatureLists)[src]

pub fn mut_feature_lists(&mut self) -> &mut FeatureLists[src]

pub fn take_feature_lists(&mut self) -> FeatureLists[src]

Trait Implementations

impl Clear for SequenceExample[src]

impl Clone for SequenceExample[src]

impl Debug for SequenceExample[src]

impl Default for SequenceExample[src]

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

impl Message for SequenceExample[src]

impl PartialEq<SequenceExample> for SequenceExample[src]

impl ProtobufValue for SequenceExample[src]

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