[][src]Struct tfrecord::protos::NameAttrList

pub struct NameAttrList {
    pub name: String,
    pub attr: HashMap<String, AttrValue>,
}

A list of attr names and their values. The whole list is attached with a string name. E.g., MatMul[T=float].

Fields

name: Stringattr: HashMap<String, AttrValue>

Trait Implementations

impl Clone for NameAttrList[src]

impl Debug for NameAttrList[src]

impl Default for NameAttrList[src]

impl<'de> Deserialize<'de> for NameAttrList[src]

impl Message for NameAttrList[src]

impl PartialEq<NameAttrList> for NameAttrList[src]

impl Serialize for NameAttrList[src]

impl StructuralPartialEq for NameAttrList[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> SetParameter for T

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.