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 is_instance_of(&self, ptype: &PType) -> bool

source

pub fn as_primitive<T: NativePType + TryFrom<PValue, Error = VortexError>>( &self, ) -> Result<T, VortexError>

source

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

source

pub fn as_i8(self) -> Option<i8>

Access PValue as i8, returning None if conversion is unsuccessful

source

pub fn as_i16(self) -> Option<i16>

Access PValue as i16, returning None if conversion is unsuccessful

source

pub fn as_i32(self) -> Option<i32>

Access PValue as i32, returning None if conversion is unsuccessful

source

pub fn as_i64(self) -> Option<i64>

Access PValue as i64, returning None if conversion is unsuccessful

source

pub fn as_u8(self) -> Option<u8>

Access PValue as u8, returning None if conversion is unsuccessful

source

pub fn as_u16(self) -> Option<u16>

Access PValue as u16, returning None if conversion is unsuccessful

source

pub fn as_u32(self) -> Option<u32>

Access PValue as u32, returning None if conversion is unsuccessful

source

pub fn as_u64(self) -> Option<u64>

Access PValue as u64, returning None if conversion is unsuccessful

source

pub fn as_f16(self) -> Option<f16>

Access PValue as f16, returning None if conversion is unsuccessful

source

pub fn as_f32(self) -> Option<f32>

Access PValue as f32, returning None if conversion is unsuccessful

source

pub fn as_f64(self) -> Option<f64>

Access PValue as f64, returning None if conversion is unsuccessful

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 Display for PValue

source§

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

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

impl From<&PValue> for ScalarValue

source§

fn from(value: &PValue) -> Self

Converts to this type from the input type.
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 From<usize> for PValue

source§

fn from(value: usize) -> PValue

Converts to this type from the input type.
source§

impl PartialEq for PValue

source§

fn eq(&self, other: &Self) -> 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: &Self) -> 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 Serialize for PValue

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<PValue> for f16

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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 usize

source§

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

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§

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.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

source§

type Output = T

Should always be Self
source§

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

source§

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
§

impl<T> ToRawKvValue for T
where T: Serialize,

§

fn raw_kv_value(&self) -> Result<JsValue, KvError>

source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

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

source§

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>,

source§

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

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

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

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> Ungil for T
where T: Send,