Enum vortex_scalar::PValue

source ·
pub enum PValue {
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    F16(f16),
    F32(f32),
    F64(f64),
}

Variants§

§

U8(u8)

§

U16(u16)

§

U32(u32)

§

U64(u64)

§

I8(i8)

§

I16(i16)

§

I32(i32)

§

I64(i64)

§

F16(f16)

§

F32(f32)

§

F64(f64)

Implementations§

source§

impl PValue

source

pub fn ptype(&self) -> PType

source

pub fn reinterpret_cast(&self, ptype: PType) -> Self

Trait Implementations§

source§

impl Clone for PValue

source§

fn clone(&self) -> PValue

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
source§

impl Debug for PValue

source§

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

Formats the value using the given formatter. Read more
source§

impl From<f16> for PValue

source§

fn from(value: f16) -> Self

Converts to this type from the input type.
source§

impl From<f32> for PValue

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for PValue

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i16> for PValue

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for PValue

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for PValue

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for PValue

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<u16> for PValue

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for PValue

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for PValue

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for PValue

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl PartialEq for PValue

source§

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

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

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

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

impl PartialOrd for PValue

source§

fn partial_cmp(&self, other: &PValue) -> 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

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

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

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

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

impl TryFrom<PValue> for f16

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for f32

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for f64

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for i16

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for i32

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for i64

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for i8

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for u16

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for u32

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for u64

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl TryFrom<PValue> for u8

§

type Error = VortexError

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

fn try_from(value: PValue) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for PValue

source§

impl StructuralPartialEq for PValue

Auto Trait Implementations§

§

impl Freeze for PValue

§

impl RefUnwindSafe for PValue

§

impl Send for PValue

§

impl Sync for PValue

§

impl Unpin for PValue

§

impl UnwindSafe for PValue

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> CloneToUninit for T
where T: Copy,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,