[][src]Struct tensorflow_proto::tensorflow::tpu::PaddingMap

pub struct PaddingMap {
    pub arg_index: i32,
    pub shape_index: i32,
    pub padding_arg_index: i32,
}

A mapping between the dynamic shape dimension of an input and the arg that represents the real shape.

Fields

arg_index: i32

Input arg index with dynamic shapes.

shape_index: i32

The dynamic shape dimension index.

padding_arg_index: i32

The arg index that dynamic dimension maps to, which represents the value of the real shape.

Trait Implementations

impl Clone for PaddingMap[src]

impl Debug for PaddingMap[src]

impl Default for PaddingMap[src]

impl Message for PaddingMap[src]

impl PartialEq<PaddingMap> for PaddingMap[src]

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