[][src]Struct tract_data::internal::TensorView

pub struct TensorView<'a> { /* fields omitted */ }

Implementations

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

pub unsafe fn from_bytes(
    tensor: &'a Tensor,
    offset_bytes: isize,
    shape: &'a [usize],
    strides: &'a [isize]
) -> TensorView<'a>
[src]

pub fn at_prefix(tensor: &'a Tensor, prefix: &[usize]) -> Result<TensorView<'a>>[src]

pub unsafe fn at_prefix_unchecked(
    tensor: &'a Tensor,
    prefix: &[usize]
) -> TensorView<'a>
[src]

pub fn datum_type(&self) -> DatumType[src]

pub fn shape(&self) -> &[usize][src]

pub fn strides(&self) -> &[isize][src]

pub fn len(&self) -> usize[src]

pub fn rank(&self) -> usize[src]

pub fn as_ptr<D: Datum>(&self) -> Result<*const D>[src]

Access the data as a pointer.

pub unsafe fn as_ptr_unchecked<D: Datum>(&self) -> *const D[src]

Access the data as a pointer.

pub unsafe fn as_ptr_mut_unchecked<D: Datum>(&mut self) -> *mut D[src]

Access the data as a pointer.

pub fn as_ptr_mut<D: Datum>(&mut self) -> Result<*mut D>[src]

Access the data as a mutable pointer.

pub unsafe fn as_slice_unchecked<D: Datum>(&self) -> &[D][src]

Access the data as a slice.

pub fn as_slice<D: Datum>(&self) -> Result<&[D]>[src]

Access the data as a slice.

pub unsafe fn as_slice_mut_unchecked<D: Datum>(&mut self) -> &mut [D][src]

Access the data as a mutable slice.

pub fn as_slice_mut<D: Datum>(&mut self) -> Result<&mut [D]>[src]

Access the data as a mutable slice.

pub unsafe fn offset_bytes(&mut self, offset: isize)[src]

pub unsafe fn offset_axis_unchecked(&mut self, axis: usize, pos: isize)[src]

pub unsafe fn offset_axis(&mut self, axis: usize, pos: isize)[src]

pub unsafe fn at_unchecked<T: Datum>(&self, coords: impl AsRef<[usize]>) -> &T[src]

pub unsafe fn at_mut_unchecked<T: Datum>(
    &mut self,
    coords: impl AsRef<[usize]>
) -> &mut T
[src]

pub fn at<T: Datum>(&self, coords: impl AsRef<[usize]>) -> Result<&T>[src]

pub fn at_mut<T: Datum>(
    &mut self,
    coords: impl AsRef<[usize]>
) -> Result<&mut T>
[src]

Trait Implementations

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for TensorView<'a>[src]

impl<'a> Send for TensorView<'a>[src]

impl<'a> Sync for TensorView<'a>[src]

impl<'a> Unpin for TensorView<'a>[src]

impl<'a> UnwindSafe for TensorView<'a>[src]

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.