[][src]Struct tensorflow_serving_client::saved_object_graph::FunctionSpec

pub struct FunctionSpec {
    pub fullargspec: SingularPtrField<StructuredValue>,
    pub is_method: bool,
    pub input_signature: SingularPtrField<StructuredValue>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

fullargspec: SingularPtrField<StructuredValue>is_method: boolinput_signature: SingularPtrField<StructuredValue>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl FunctionSpec[src]

pub fn new() -> FunctionSpec[src]

pub fn get_fullargspec(&self) -> &StructuredValue[src]

pub fn clear_fullargspec(&mut self)[src]

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

pub fn set_fullargspec(&mut self, v: StructuredValue)[src]

pub fn mut_fullargspec(&mut self) -> &mut StructuredValue[src]

pub fn take_fullargspec(&mut self) -> StructuredValue[src]

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

pub fn clear_is_method(&mut self)[src]

pub fn set_is_method(&mut self, v: bool)[src]

pub fn get_input_signature(&self) -> &StructuredValue[src]

pub fn clear_input_signature(&mut self)[src]

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

pub fn set_input_signature(&mut self, v: StructuredValue)[src]

pub fn mut_input_signature(&mut self) -> &mut StructuredValue[src]

pub fn take_input_signature(&mut self) -> StructuredValue[src]

Trait Implementations

impl Clear for FunctionSpec[src]

impl Clone for FunctionSpec[src]

impl Debug for FunctionSpec[src]

impl Default for FunctionSpec[src]

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

impl Message for FunctionSpec[src]

impl PartialEq<FunctionSpec> for FunctionSpec[src]

impl ProtobufValue for FunctionSpec[src]

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