pub enum DatumType {
Show 18 variants Bool, U8, U16, U32, U64, I8, I16, I32, I64, F16, F32, F64, TDim, Blob, String, QI8(QParams), QU8(QParams), QI32(QParams),
}

Variants§

§

Bool

§

U8

§

U16

§

U32

§

U64

§

I8

§

I16

§

I32

§

I64

§

F16

§

F32

§

F64

§

TDim

§

Blob

§

String

§

QI8(QParams)

§

QU8(QParams)

§

QI32(QParams)

Implementations§

§

impl DatumType

pub fn super_types(&self) -> SmallVec<[DatumType; 4]>

pub fn super_type_for( i: impl IntoIterator<Item = impl Borrow<DatumType>> ) -> Option<DatumType>

pub fn common_super_type(&self, rhs: DatumType) -> Option<DatumType>

pub fn is_unsigned(&self) -> bool

pub fn is_signed(&self) -> bool

pub fn is_float(&self) -> bool

pub fn is_copy(&self) -> bool

pub fn is_quantized(&self) -> bool

pub fn qparams(&self) -> Option<QParams>

pub fn with_qparams(&self, qparams: QParams) -> DatumType

pub fn zp_scale(&self) -> (i32, f32)

pub fn unquantized(&self) -> DatumType

pub fn integer(signed: bool, size: usize) -> DatumType

pub fn is_integer(&self) -> bool

pub fn size_of(&self) -> usize

pub fn alignment(&self) -> usize

pub fn min_value(&self) -> Tensor

pub fn max_value(&self) -> Tensor

Trait Implementations§

§

impl Clone for DatumType

§

fn clone(&self) -> DatumType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl DatumTypeExt for DatumType

§

fn scalar_fact(&self) -> TypedFact

§

fn fact<S>(&self, shape: S) -> TypedFactwhere S: Into<ShapeFact>,

§

impl Debug for DatumType

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl FromStr for DatumType

§

type Err = Error

The associated error which can be returned from parsing.
§

fn from_str(s: &str) -> Result<DatumType, <DatumType as FromStr>::Err>

Parses a string s to return a value of this type. Read more
§

impl Hash for DatumType

§

fn hash<__H>(&self, state: &mut __H)where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
§

impl Ord for DatumType

§

fn cmp(&self, other: &DatumType) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
§

impl PartialEq<DatumType> for DatumType

§

fn eq(&self, other: &DatumType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl PartialOrd<DatumType> for DatumType

§

fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl Copy for DatumType

§

impl Eq for DatumType

§

impl StructuralEq for DatumType

§

impl StructuralPartialEq for DatumType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CallHasher for Twhere T: Hash + ?Sized,

§

default fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64where H: Hash + ?Sized, B: BuildHasher,

§

impl<T> ClampCast for Twhere T: PartialOrd<T> + Copy + 'static,

§

fn clamp_cast<O>(self) -> Owhere Self: AsPrimitive<O> + Datum, O: AsPrimitive<Self> + Bounded + Datum,

source§

impl<T> Downcast for Twhere T: Any,

source§

fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
source§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
source§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

source§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send + 'static>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.