Enum tract_pulse::internal::DatumType [−]
pub enum DatumType {
}Variants
QI8(QParams)Tuple Fields of QI8
0: QParamsQU8(QParams)Tuple Fields of QU8
0: QParamsImplementations
impl DatumType
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_complex(&self) -> bool
pub fn is_complex_float(&self) -> bool
pub fn is_complex_signed(&self) -> bool
pub fn is_quantized(&self) -> bool
pub fn with_qparams(&self, qparams: QParams) -> DatumType
pub fn unquantized(&self) -> DatumType
pub fn is_integer(&self) -> bool
Trait Implementations
impl PartialOrd<DatumType> for DatumType
impl PartialOrd<DatumType> for DatumType
pub fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
pub fn partial_cmp(&self, other: &DatumType) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
impl StructuralEq for DatumType
impl StructuralPartialEq for DatumType
Auto Trait Implementations
impl RefUnwindSafe for DatumType
impl UnwindSafe for DatumType
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> ClampCast for T where
T: 'static + PartialOrd<T> + Copy,
impl<T> ClampCast for T where
T: 'static + PartialOrd<T> + Copy,
fn clamp_cast<O>(self) -> O where
Self: AsPrimitive<O>,
O: AsPrimitive<Self> + Bounded,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘimpl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;
impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<F, A> Future for Box<F, A> where
F: Future + Unpin + ?Sized,
A: Allocator + 'static, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
I: Iterator + ?Sized,
A: Allocator, type Item = <I as Iterator>::Item;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. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s. Read more