Enum relay_protocol::Val

source ·
pub enum Val<'a> {
    Bool(bool),
    I64(i64),
    U64(u64),
    F64(f64),
    String(&'a str),
    Uuid(Uuid),
    Array(Arr<'a>),
    Object(Obj<'a>),
}
Expand description

Borrowed version of Value.

Variants§

§

Bool(bool)

A boolean value.

§

I64(i64)

A signed integer value.

§

U64(u64)

An unsigned integer value.

§

F64(f64)

A floating point value.

§

String(&'a str)

A string value.

§

Uuid(Uuid)

A UUID.

§

Array(Arr<'a>)

An array of annotated values.

§

Object(Obj<'a>)

A mapping of strings to annotated values.

Implementations§

source§

impl<'a> Val<'a>

source

pub fn as_bool(&self) -> Option<bool>

Returns the value if it is a boolean, otherwise None.

source

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

Represents the value as f64 if possible. Returns None otherwise.

source

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

Represents the value as f64 if possible. Returns None otherwise.

source

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

Represents the value as f64 if possible. Returns None otherwise.

source

pub fn as_str(&self) -> Option<&'a str>

Returns the string if this value is a string, otherwise None.

source

pub fn as_uuid(&self) -> Option<Uuid>

Returns the UUID if this value is a UUID, otherwise None.

Trait Implementations§

source§

impl<'a> Clone for Val<'a>

source§

fn clone(&self) -> Val<'a>

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<'a> Debug for Val<'a>

source§

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

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

impl<'a, T> From<&'a T> for Val<'a>
where Val<'a>: From<T>, T: Copy,

source§

fn from(value: &'a T) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a Value> for Val<'a>

source§

fn from(value: &'a Value) -> Self

Converts to this type from the input type.
source§

impl<'a> From<&'a str> for Val<'a>

source§

fn from(value: &'a str) -> Self

Converts to this type from the input type.
source§

impl From<Uuid> for Val<'_>

source§

fn from(value: Uuid) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Val<'_>

source§

fn from(value: bool) -> Self

Converts to this type from the input type.
source§

impl From<f64> for Val<'_>

source§

fn from(value: f64) -> Self

Converts to this type from the input type.
source§

impl From<i64> for Val<'_>

source§

fn from(value: i64) -> Self

Converts to this type from the input type.
source§

impl From<u64> for Val<'_>

source§

fn from(value: u64) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Val<'_>

source§

fn eq(&self, other: &Self) -> 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.
source§

impl<'a> Copy for Val<'a>

Auto Trait Implementations§

§

impl<'a> Freeze for Val<'a>

§

impl<'a> RefUnwindSafe for Val<'a>

§

impl<'a> Send for Val<'a>

§

impl<'a> Sync for Val<'a>

§

impl<'a> Unpin for Val<'a>

§

impl<'a> UnwindSafe for Val<'a>

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> DynClone for T
where 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 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> 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.
§

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

§

fn vzip(self) -> V