[][src]Struct tract_tensorflow::tfpb::attr_value::AttrValue

pub struct AttrValue {
    pub value: Option<AttrValue_oneof_value>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

value: Option<AttrValue_oneof_value>unknown_fields: UnknownFieldscached_size: CachedSize

Methods

impl AttrValue[src]

pub fn new() -> AttrValue[src]

pub fn clear_s(&mut self)[src]

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

pub fn set_s(&mut self, v: Vec<u8>)[src]

pub fn mut_s(&mut self) -> &mut Vec<u8>[src]

pub fn take_s(&mut self) -> Vec<u8>[src]

pub fn get_s(&self) -> &[u8][src]

pub fn clear_i(&mut self)[src]

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

pub fn set_i(&mut self, v: i64)[src]

pub fn get_i(&self) -> i64[src]

pub fn clear_f(&mut self)[src]

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

pub fn set_f(&mut self, v: f32)[src]

pub fn get_f(&self) -> f32[src]

pub fn clear_b(&mut self)[src]

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

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

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

pub fn clear_field_type(&mut self)[src]

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

pub fn set_field_type(&mut self, v: DataType)[src]

pub fn get_field_type(&self) -> DataType[src]

pub fn clear_shape(&mut self)[src]

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

pub fn set_shape(&mut self, v: TensorShapeProto)[src]

pub fn mut_shape(&mut self) -> &mut TensorShapeProto[src]

pub fn take_shape(&mut self) -> TensorShapeProto[src]

pub fn get_shape(&self) -> &TensorShapeProto[src]

pub fn clear_tensor(&mut self)[src]

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

pub fn set_tensor(&mut self, v: TensorProto)[src]

pub fn mut_tensor(&mut self) -> &mut TensorProto[src]

pub fn take_tensor(&mut self) -> TensorProto[src]

pub fn get_tensor(&self) -> &TensorProto[src]

pub fn clear_list(&mut self)[src]

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

pub fn set_list(&mut self, v: AttrValue_ListValue)[src]

pub fn mut_list(&mut self) -> &mut AttrValue_ListValue[src]

pub fn take_list(&mut self) -> AttrValue_ListValue[src]

pub fn get_list(&self) -> &AttrValue_ListValue[src]

pub fn clear_func(&mut self)[src]

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

pub fn set_func(&mut self, v: NameAttrList)[src]

pub fn mut_func(&mut self) -> &mut NameAttrList[src]

pub fn take_func(&mut self) -> NameAttrList[src]

pub fn get_func(&self) -> &NameAttrList[src]

pub fn clear_placeholder(&mut self)[src]

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

pub fn set_placeholder(&mut self, v: String)[src]

pub fn mut_placeholder(&mut self) -> &mut String[src]

pub fn take_placeholder(&mut self) -> String[src]

pub fn get_placeholder(&self) -> &str[src]

Trait Implementations

impl PartialEq<AttrValue> for AttrValue[src]

impl Default for AttrValue[src]

impl Clone for AttrValue[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl From<DataType> for AttrValue[src]

impl<'a> From<&'a str> for AttrValue[src]

impl From<i64> for AttrValue[src]

impl From<f32> for AttrValue[src]

impl From<Vec<i64>> for AttrValue[src]

impl<'a> From<TensorProto> for AttrValue[src]

impl<'a> From<TensorShapeProto> for AttrValue[src]

impl Debug for AttrValue[src]

impl Message for AttrValue[src]

fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>[src]

Write the message to the stream. Read more

fn write_length_delimited_to(
    &self,
    os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
[src]

Write the message to the stream prepending the message with message length encoded as varint. Read more

fn write_length_delimited_to_vec(
    &self,
    vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
[src]

Write the message to the vec, prepend the message with message length encoded as varint. Read more

fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>[src]

Update this message object with fields read from given stream.

fn check_initialized(&self) -> Result<(), ProtobufError>[src]

Check if all required fields of this object are initialized.

fn write_to_writer(&self, w: &mut dyn Write) -> Result<(), ProtobufError>[src]

Write the message to the writer.

fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>[src]

Write the message to bytes vec.

fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to bytes vec.

fn write_length_delimited_to_writer(
    &self,
    w: &mut dyn Write
) -> Result<(), ProtobufError>
[src]

Write the message to the writer, prepend the message with message length encoded as varint. Read more

fn write_length_delimited_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>[src]

Write the message to the bytes vec, prepend the message with message length encoded as varint. Read more

fn type_id(&self) -> TypeId[src]

Get type id for downcasting.

impl Clear for AttrValue[src]

impl ProtobufValue for AttrValue[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

fn is_non_zero(&self) -> bool[src]

fn as_ref_copy(&self) -> ProtobufValueRef<'static>[src]

Auto Trait Implementations

impl Send for AttrValue

impl Sync for AttrValue

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Downcast for T where
    T: Any

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