pub enum TagValue {
Show 16 variants Bool(bool), U8(u8), U16(u16), U32(u32), U64(u64), F32(f32), F64(f64), ArrayBool(Vec<bool>), ArrayU8(Vec<u8>), ArrayU16(Vec<u16>), ArrayU32(Vec<u32>), ArrayU64(Vec<u64>), ArrayF32(Vec<f32>), ArrayF64(Vec<f64>), ArrayString(Vec<String>), String(String),
}
Expand description

This enum holds the different values that can be represented in a RAD tag. For the aggregate (i.e. array) types, the type of the element being stored in the array is encoded in the TagValue variant, but the length of the array is not.

Variants§

§

Bool(bool)

§

U8(u8)

§

U16(u16)

§

U32(u32)

§

U64(u64)

§

F32(f32)

§

F64(f64)

§

ArrayBool(Vec<bool>)

§

ArrayU8(Vec<u8>)

§

ArrayU16(Vec<u16>)

§

ArrayU32(Vec<u32>)

§

ArrayU64(Vec<u64>)

§

ArrayF32(Vec<f32>)

§

ArrayF64(Vec<f64>)

§

ArrayString(Vec<String>)

§

String(String)

Trait Implementations§

source§

impl Debug for TagValue

source§

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

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

impl PartialEq for TagValue

source§

fn eq(&self, other: &TagValue) -> 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 TryInto<u16> for &TagValue

allow converting a libradicl::rad_types::TagValue into an appropriate integer type. This fails if the value contained is too big to fit in the corresponidng type.

§

type Error = Error

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

fn try_into(self) -> Result<u16, Self::Error>

Performs the conversion.
source§

impl TryInto<u32> for &TagValue

allow converting a libradicl::rad_types::TagValue into an appropriate integer type. This fails if the value contained is too big to fit in the corresponidng type.

§

type Error = Error

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

fn try_into(self) -> Result<u32, Self::Error>

Performs the conversion.
source§

impl TryInto<u64> for &TagValue

allow converting a libradicl::rad_types::TagValue into an appropriate integer type. This fails if the value contained is too big to fit in the corresponidng type.

§

type Error = Error

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

fn try_into(self) -> Result<u64, Self::Error>

Performs the conversion.
source§

impl TryInto<u8> for &TagValue

allow converting a libradicl::rad_types::TagValue into an appropriate integer type. This fails if the value contained is too big to fit in the corresponidng type.

§

type Error = Error

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

fn try_into(self) -> Result<u8, Self::Error>

Performs the conversion.
source§

impl StructuralPartialEq for TagValue

Auto Trait Implementations§

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