[][src]Struct arrow::ipc::gen::SparseTensor::SparseTensorArgs

pub struct SparseTensorArgs<'a> {
    pub type_type: Type,
    pub type_: Option<WIPOffset<UnionWIPOffset>>,
    pub shape: Option<WIPOffset<Vector<'a, ForwardsUOffset<TensorDim<'a>>>>>,
    pub non_zero_length: i64,
    pub sparseIndex_type: SparseTensorIndex,
    pub sparseIndex: Option<WIPOffset<UnionWIPOffset>>,
    pub data: Option<&'a Buffer>,
}

Fields

type_type: Typetype_: Option<WIPOffset<UnionWIPOffset>>shape: Option<WIPOffset<Vector<'a, ForwardsUOffset<TensorDim<'a>>>>>non_zero_length: i64sparseIndex_type: SparseTensorIndexsparseIndex: Option<WIPOffset<UnionWIPOffset>>data: Option<&'a Buffer>

Trait Implementations

impl<'a> Default for SparseTensorArgs<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for SparseTensorArgs<'a>

impl<'a> Send for SparseTensorArgs<'a>

impl<'a> Sync for SparseTensorArgs<'a>

impl<'a> Unpin for SparseTensorArgs<'a>

impl<'a> UnwindSafe for SparseTensorArgs<'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, 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>,