[][src]Struct tract_core::model::NormalizedFact

pub struct NormalizedFact {
    pub datum_type: DatumType,
    pub shape: ShapeFact,
}

Tensor information for Normalized models.

Constant value is not allowed, as all tensors in normalized forms are variables.

Fields

datum_type: DatumType

tensor element type

shape: ShapeFact

tensor shape

Methods

impl NormalizedFact[src]

pub fn shape<T, S, E>(shape: S) -> TractResult<NormalizedFact> where
    T: Datum,
    S: TryInto<ShapeFact, Error = E>,
    TractError: From<E>, 
[src]

pub fn dt_shape<S, E>(
    datum_type: DatumType,
    shape: S
) -> TractResult<NormalizedFact> where
    S: TryInto<ShapeFact, Error = E>,
    TractError: From<E>, 
[src]

Trait Implementations

impl Clone for NormalizedFact[src]

impl Debug for NormalizedFact[src]

impl Fact for NormalizedFact[src]

impl<'a> From<&'a NormalizedFact> for TypedFact[src]

impl<'t> From<&'t Tensor> for NormalizedFact[src]

impl PartialEq<NormalizedFact> for NormalizedFact[src]

impl StructuralPartialEq for NormalizedFact[src]

impl<'a> TryFrom<&'a TypedFact> for NormalizedFact[src]

type Error = TractError

The type returned in the event of a conversion error.

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

impl<T> DynClone for T where
    T: Clone
[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.