Enum minicbor::data::IanaTag

source ·
#[non_exhaustive]
pub enum IanaTag {
Show 41 variants DateTime, Timestamp, PosBignum, NegBignum, Decimal, Bigfloat, ToBase64Url, ToBase64, ToBase16, Cbor, Uri, Base64Url, Base64, Regex, Mime, HomogenousArray, TypedArrayU8, TypedArrayU8Clamped, TypedArrayU16B, TypedArrayU32B, TypedArrayU64B, TypedArrayU16L, TypedArrayU32L, TypedArrayU64L, TypedArrayI8, TypedArrayI16B, TypedArrayI32B, TypedArrayI64B, TypedArrayI16L, TypedArrayI32L, TypedArrayI64L, TypedArrayF16B, TypedArrayF32B, TypedArrayF64B, TypedArrayF128B, TypedArrayF16L, TypedArrayF32L, TypedArrayF64L, TypedArrayF128L, MultiDimArrayR, MultiDimArrayC,
}
Expand description

IANA registered tags.

See https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml for details.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

DateTime

§

Timestamp

§

PosBignum

§

NegBignum

§

Decimal

§

Bigfloat

§

ToBase64Url

§

ToBase64

§

ToBase16

§

Cbor

§

Uri

§

Base64Url

§

Base64

§

Regex

§

Mime

§

HomogenousArray

§

TypedArrayU8

§

TypedArrayU8Clamped

§

TypedArrayU16B

§

TypedArrayU32B

§

TypedArrayU64B

§

TypedArrayU16L

§

TypedArrayU32L

§

TypedArrayU64L

§

TypedArrayI8

§

TypedArrayI16B

§

TypedArrayI32B

§

TypedArrayI64B

§

TypedArrayI16L

§

TypedArrayI32L

§

TypedArrayI64L

§

TypedArrayF16B

§

TypedArrayF32B

§

TypedArrayF64B

§

TypedArrayF128B

§

TypedArrayF16L

§

TypedArrayF32L

§

TypedArrayF64L

§

TypedArrayF128L

§

MultiDimArrayR

§

MultiDimArrayC

Implementations§

source§

impl IanaTag

source

pub fn tag(self) -> Tag

Trait Implementations§

source§

impl<C> CborLen<C> for IanaTag

source§

fn cbor_len(&self, ctx: &mut C) -> usize

Compute the CBOR encoding length in bytes of this value.
source§

impl Clone for IanaTag

source§

fn clone(&self) -> IanaTag

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 IanaTag

source§

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

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

impl<C> Encode<C> for IanaTag

source§

fn encode<W: Write>( &self, e: &mut Encoder<W>, _: &mut C, ) -> Result<(), Error<W::Error>>

Encode a value of this type using the given Encoder. Read more
source§

fn is_nil(&self) -> bool

Is this value of Self a nil value? Read more
source§

impl From<&IanaTag> for Tag

source§

fn from(t: &IanaTag) -> Tag

Converts to this type from the input type.
source§

impl From<&IanaTag> for u64

source§

fn from(t: &IanaTag) -> Self

Converts to this type from the input type.
source§

impl From<IanaTag> for Tag

source§

fn from(t: IanaTag) -> Tag

Converts to this type from the input type.
source§

impl From<IanaTag> for u64

source§

fn from(t: IanaTag) -> Self

Converts to this type from the input type.
source§

impl Hash for IanaTag

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for IanaTag

source§

fn cmp(&self, other: &IanaTag) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
source§

impl PartialEq for IanaTag

source§

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

source§

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

source§

type Error = UnknownTag

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

fn try_from(t: Tag) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl Copy for IanaTag

source§

impl Eq for IanaTag

source§

impl StructuralPartialEq for IanaTag

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

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

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.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 1 byte

Size for each variant:

  • DateTime: 0 bytes
  • Timestamp: 0 bytes
  • PosBignum: 0 bytes
  • NegBignum: 0 bytes
  • Decimal: 0 bytes
  • Bigfloat: 0 bytes
  • ToBase64Url: 0 bytes
  • ToBase64: 0 bytes
  • ToBase16: 0 bytes
  • Cbor: 0 bytes
  • Uri: 0 bytes
  • Base64Url: 0 bytes
  • Base64: 0 bytes
  • Regex: 0 bytes
  • Mime: 0 bytes
  • HomogenousArray: 0 bytes
  • TypedArrayU8: 0 bytes
  • TypedArrayU8Clamped: 0 bytes
  • TypedArrayU16B: 0 bytes
  • TypedArrayU32B: 0 bytes
  • TypedArrayU64B: 0 bytes
  • TypedArrayU16L: 0 bytes
  • TypedArrayU32L: 0 bytes
  • TypedArrayU64L: 0 bytes
  • TypedArrayI8: 0 bytes
  • TypedArrayI16B: 0 bytes
  • TypedArrayI32B: 0 bytes
  • TypedArrayI64B: 0 bytes
  • TypedArrayI16L: 0 bytes
  • TypedArrayI32L: 0 bytes
  • TypedArrayI64L: 0 bytes
  • TypedArrayF16B: 0 bytes
  • TypedArrayF32B: 0 bytes
  • TypedArrayF64B: 0 bytes
  • TypedArrayF128B: 0 bytes
  • TypedArrayF16L: 0 bytes
  • TypedArrayF32L: 0 bytes
  • TypedArrayF64L: 0 bytes
  • TypedArrayF128L: 0 bytes
  • MultiDimArrayR: 0 bytes
  • MultiDimArrayC: 0 bytes