[][src]Struct tensorflow_serving_client::regression::RegressionRequest

pub struct RegressionRequest {
    pub model_spec: SingularPtrField<ModelSpec>,
    pub input: SingularPtrField<Input>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

model_spec: SingularPtrField<ModelSpec>input: SingularPtrField<Input>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl RegressionRequest[src]

pub fn new() -> RegressionRequest[src]

pub fn get_model_spec(&self) -> &ModelSpec[src]

pub fn clear_model_spec(&mut self)[src]

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

pub fn set_model_spec(&mut self, v: ModelSpec)[src]

pub fn mut_model_spec(&mut self) -> &mut ModelSpec[src]

pub fn take_model_spec(&mut self) -> ModelSpec[src]

pub fn get_input(&self) -> &Input[src]

pub fn clear_input(&mut self)[src]

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

pub fn set_input(&mut self, v: Input)[src]

pub fn mut_input(&mut self) -> &mut Input[src]

pub fn take_input(&mut self) -> Input[src]

Trait Implementations

impl Clear for RegressionRequest[src]

impl Clone for RegressionRequest[src]

impl Debug for RegressionRequest[src]

impl Default for RegressionRequest[src]

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

impl Message for RegressionRequest[src]

impl PartialEq<RegressionRequest> for RegressionRequest[src]

impl ProtobufValue for RegressionRequest[src]

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