[][src]Struct onnxruntime::session::Output

pub struct Output {
    pub name: String,
    pub output_type: TensorElementDataType,
    pub dimensions: Vec<Option<u32>>,
}

Information about an ONNX's output as stored in loaded file

Fields

name: String

Name of the output layer

output_type: TensorElementDataType

Type of the output layer's elements

dimensions: Vec<Option<u32>>

Shape of the output layer

C API uses a i64 for the dimensions. We use an unsigned of the same range of the positive values.

Implementations

impl Output[src]

pub fn dimensions(&self) -> impl Iterator<Item = Option<usize>> + '_[src]

Return an iterator over the shape elements of the output layer

Note: The member Output::dimensions stores u32 (since ONNX uses i64 but which cannot be negative) so the iterator converts to usize.

Trait Implementations

impl Debug for Output[src]

Auto Trait Implementations

impl RefUnwindSafe for Output

impl Send for Output

impl Sync for Output

impl Unpin for Output

impl UnwindSafe for Output

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> Instrument 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.