pub enum MixedValue {
    Boolean(bool),
    Decimal(f64),
    Integer(BigInt),
}

Variants§

§

Boolean(bool)

§

Decimal(f64)

§

Integer(BigInt)

Trait Implementations§

source§

impl Debug for MixedValue

source§

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

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

impl Display for MixedValue

source§

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

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

impl From<&BigInt> for MixedValue

source§

fn from(value: &BigInt) -> Self

Converts to this type from the input type.
source§

impl From<&BigUint> for MixedValue

source§

fn from(value: &BigUint) -> Self

Converts to this type from the input type.
source§

impl From<&f32> for MixedValue

source§

fn from(value: &f32) -> Self

Converts to this type from the input type.
source§

impl From<&f64> for MixedValue

source§

fn from(value: &f64) -> Self

Converts to this type from the input type.
source§

impl From<&i128> for MixedValue

source§

fn from(value: &i128) -> Self

Converts to this type from the input type.
source§

impl From<&i16> for MixedValue

source§

fn from(value: &i16) -> Self

Converts to this type from the input type.
source§

impl From<&i32> for MixedValue

source§

fn from(value: &i32) -> Self

Converts to this type from the input type.
source§

impl From<&i64> for MixedValue

source§

fn from(value: &i64) -> Self

Converts to this type from the input type.
source§

impl From<&i8> for MixedValue

source§

fn from(value: &i8) -> Self

Converts to this type from the input type.
source§

impl From<&isize> for MixedValue

source§

fn from(value: &isize) -> Self

Converts to this type from the input type.
source§

impl From<&u128> for MixedValue

source§

fn from(value: &u128) -> Self

Converts to this type from the input type.
source§

impl From<&u16> for MixedValue

source§

fn from(value: &u16) -> Self

Converts to this type from the input type.
source§

impl From<&u32> for MixedValue

source§

fn from(value: &u32) -> Self

Converts to this type from the input type.
source§

impl From<&u64> for MixedValue

source§

fn from(value: &u64) -> Self

Converts to this type from the input type.
source§

impl From<&u8> for MixedValue

source§

fn from(value: &u8) -> Self

Converts to this type from the input type.
source§

impl From<&usize> for MixedValue

source§

fn from(value: &usize) -> Self

Converts to this type from the input type.
source§

impl From<BigInt> for MixedValue

source§

fn from(value: BigInt) -> Self

Converts to this type from the input type.
source§

impl From<BigUint> for MixedValue

source§

fn from(value: BigUint) -> Self

Converts to this type from the input type.
source§

impl From<bool> for MixedValue

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<f32> for MixedValue

source§

fn from(value: f32) -> Self

Converts to this type from the input type.
source§

impl From<f64> for MixedValue

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i128> for MixedValue

source§

fn from(value: i128) -> Self

Converts to this type from the input type.
source§

impl From<i16> for MixedValue

source§

fn from(value: i16) -> Self

Converts to this type from the input type.
source§

impl From<i32> for MixedValue

source§

fn from(value: i32) -> Self

Converts to this type from the input type.
source§

impl From<i64> for MixedValue

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<i8> for MixedValue

source§

fn from(value: i8) -> Self

Converts to this type from the input type.
source§

impl From<isize> for MixedValue

source§

fn from(value: isize) -> Self

Converts to this type from the input type.
source§

impl From<u128> for MixedValue

source§

fn from(value: u128) -> Self

Converts to this type from the input type.
source§

impl From<u16> for MixedValue

source§

fn from(value: u16) -> Self

Converts to this type from the input type.
source§

impl From<u32> for MixedValue

source§

fn from(value: u32) -> Self

Converts to this type from the input type.
source§

impl From<u64> for MixedValue

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl From<u8> for MixedValue

source§

fn from(value: u8) -> Self

Converts to this type from the input type.
source§

impl From<usize> for MixedValue

source§

fn from(value: usize) -> Self

Converts to this type from the input type.

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> ToString for Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.