pub enum IonTypeCode {
Show 16 variants NullOrNop, Boolean, PositiveInteger, NegativeInteger, Float, Decimal, Timestamp, Symbol, String, Clob, Blob, List, SExpression, Struct, AnnotationOrIvm, Reserved,
}
Expand description

Represents the type information found in the header byte of each binary Ion value. While this value can be readily mapped to a user-level IonType, it is a distinct concept. The IonTypeCode enum captures system-level information that is not exposed to end users of the library, including:

  • Whether the cursor is positioned over whitespace that needs to be skipped.
  • Whether the integer value being read is positive or negative.
  • Whether the next type code is reserved.

See the Typed Value Formats section of the spec for more information.

Variants§

§

NullOrNop

§

Boolean

§

PositiveInteger

§

NegativeInteger

§

Float

§

Decimal

§

Timestamp

§

Symbol

§

String

§

Clob

§

Blob

§

List

§

SExpression

§

Struct

§

AnnotationOrIvm

§

Reserved

Implementations§

source§

impl IonTypeCode

source

pub const fn to_u8(self) -> u8

Constant function to convert an IonTypeCode into a u8.

Trait Implementations§

source§

impl Clone for IonTypeCode

source§

fn clone(&self) -> IonTypeCode

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 IonTypeCode

source§

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

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

impl PartialEq<IonTypeCode> for IonTypeCode

source§

fn eq(&self, other: &IonTypeCode) -> 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 TryFrom<IonTypeCode> for IonType

source§

fn try_from(ion_type_code: IonTypeCode) -> Result<Self, Self::Error>

Attempts to convert the system-level IonTypeCode into the corresponding user-level IonType.

§

type Error = IonError

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

impl TryFrom<u8> for IonTypeCode

source§

fn try_from(type_code: u8) -> Result<Self, Self::Error>

Attempts to convert the provided byte into an IonTypeCode. Any value greater than 15 will result in an Error.

§

type Error = IonError

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

impl Copy for IonTypeCode

source§

impl Eq for IonTypeCode

source§

impl StructuralEq for IonTypeCode

source§

impl StructuralPartialEq for IonTypeCode

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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 Twhere 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 Twhere 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 Twhere 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 Twhere 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.