[][src]Struct arrow::ipc::gen::Tensor::TensorDim

pub struct TensorDim<'a> {
    pub _tab: Table<'a>,
}

Data structures for dense tensors Shape data for a single axis in a tensor

Fields

_tab: Table<'a>

Implementations

impl<'a> TensorDim<'a>[src]

pub fn init_from_table(table: Table<'a>) -> Self[src]

pub fn create<'bldr: 'args, 'args: 'mut_bldr, 'mut_bldr>(
    _fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
    args: &'args TensorDimArgs<'args>
) -> WIPOffset<TensorDim<'bldr>>
[src]

pub const VT_SIZE_: VOffsetT[src]

pub const VT_NAME: VOffsetT[src]

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

Length of dimension

pub fn name(&self) -> Option<&'a str>[src]

Name of the dimension, optional

Trait Implementations

impl<'a> Clone for TensorDim<'a>[src]

impl<'a> Copy for TensorDim<'a>[src]

impl<'a> Debug for TensorDim<'a>[src]

impl<'a> Follow<'a> for TensorDim<'a>[src]

type Inner = TensorDim<'a>

impl<'a> PartialEq<TensorDim<'a>> for TensorDim<'a>[src]

impl<'a> StructuralPartialEq for TensorDim<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for TensorDim<'a>

impl<'a> Send for TensorDim<'a>

impl<'a> Sync for TensorDim<'a>

impl<'a> Unpin for TensorDim<'a>

impl<'a> UnwindSafe for TensorDim<'a>

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,