Skip to main content

ArchivedVrCode

Enum ArchivedVrCode 

Source
#[repr(u8)]
pub enum ArchivedVrCode {
Show 35 variants AE = 0, AS = 1, AT = 2, CS = 3, DA = 4, DS = 5, DT = 6, FL = 7, FD = 8, IS = 9, LO = 10, LT = 11, OB = 12, OD = 13, OF = 14, OL = 15, OV = 16, OW = 17, PN = 18, SH = 19, SL = 20, SQ = 21, SS = 22, ST = 23, SV = 24, TM = 25, UC = 26, UI = 27, UL = 28, UN = 29, UR = 30, US = 31, UT = 32, UV = 33, Unknown = 34,
}
Expand description

An archived VrCode

Variants§

§

AE = 0

The archived counterpart of VrCode::AE

§

AS = 1

The archived counterpart of VrCode::AS

§

AT = 2

The archived counterpart of VrCode::AT

§

CS = 3

The archived counterpart of VrCode::CS

§

DA = 4

The archived counterpart of VrCode::DA

§

DS = 5

The archived counterpart of VrCode::DS

§

DT = 6

The archived counterpart of VrCode::DT

§

FL = 7

The archived counterpart of VrCode::FL

§

FD = 8

The archived counterpart of VrCode::FD

§

IS = 9

The archived counterpart of VrCode::IS

§

LO = 10

The archived counterpart of VrCode::LO

§

LT = 11

The archived counterpart of VrCode::LT

§

OB = 12

The archived counterpart of VrCode::OB

§

OD = 13

The archived counterpart of VrCode::OD

§

OF = 14

The archived counterpart of VrCode::OF

§

OL = 15

The archived counterpart of VrCode::OL

§

OV = 16

The archived counterpart of VrCode::OV

§

OW = 17

The archived counterpart of VrCode::OW

§

PN = 18

The archived counterpart of VrCode::PN

§

SH = 19

The archived counterpart of VrCode::SH

§

SL = 20

The archived counterpart of VrCode::SL

§

SQ = 21

The archived counterpart of VrCode::SQ

§

SS = 22

The archived counterpart of VrCode::SS

§

ST = 23

The archived counterpart of VrCode::ST

§

SV = 24

The archived counterpart of VrCode::SV

§

TM = 25

The archived counterpart of VrCode::TM

§

UC = 26

The archived counterpart of VrCode::UC

§

UI = 27

The archived counterpart of VrCode::UI

§

UL = 28

The archived counterpart of VrCode::UL

§

UN = 29

The archived counterpart of VrCode::UN

§

UR = 30

The archived counterpart of VrCode::UR

§

US = 31

The archived counterpart of VrCode::US

§

UT = 32

The archived counterpart of VrCode::UT

§

UV = 33

The archived counterpart of VrCode::UV

§

Unknown = 34

The archived counterpart of VrCode::Unknown

Trait Implementations§

Source§

impl<__C: ?Sized> CheckBytes<__C> for ArchivedVrCode

Source§

type Error = EnumCheckError<u8>

The error that may result from checking the type.
Source§

unsafe fn check_bytes<'__bytecheck>( value: *const Self, context: &mut __C, ) -> Result<&'__bytecheck Self, EnumCheckError<u8>>

Checks whether the given pointer points to a valid value within the given context. Read more

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> ArchivePointee for T

Source§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
Source§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
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<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

Source§

fn deserialize( &self, deserializer: &mut D, ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
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> LayoutRaw for T

Source§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
Source§

impl<T> Pointee for T

Source§

type Metadata = ()

The type for metadata in pointers and references to Self.
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.