#[repr(u32)]
pub enum KnownMetadata { Wildcard = 0, HardDisk = 1_195_656_260, HardDiskIdent = 1_229_213_268, HardDiskKey = 1_262_836_000, PcmciaCIS = 1_128_878_880, CdRomOld = 1_128_809_284, CdRomTrack = 1_128_813_650, CdRomTrack2 = 1_128_813_618, GdRomOld = 1_128_810_324, GdRomTrack = 1_128_810_308, AudioVideo = 1_096_171_862, AudioVideoLaserDisc = 1_096_174_660, }
Expand description

A list of well-known metadata tags.

Variants§

§

Wildcard = 0

Wildcard for search (0)

§

HardDisk = 1_195_656_260

Hard Disk (GDDD)

§

HardDiskIdent = 1_229_213_268

Hard Disk Identifier (IDNT)

§

HardDiskKey = 1_262_836_000

Hard Disk Key (KEY )

§

PcmciaCIS = 1_128_878_880

PCMCIA Card Information (CIS )

§

CdRomOld = 1_128_809_284

Legacy CD-ROM metadata (CHCD)

§

CdRomTrack = 1_128_813_650

CD-ROM track metadata (CHTR)

§

CdRomTrack2 = 1_128_813_618

CD-ROM track metadata (CHT2)

§

GdRomOld = 1_128_810_324

Legacy GD-ROM metadata (CHGT)

§

GdRomTrack = 1_128_810_308

GD-ROM track metadata (CHGD)

§

AudioVideo = 1_096_171_862

A/V metadata (AVAV)

§

AudioVideoLaserDisc = 1_096_174_660

LaserDisc A/V metadata (AVLD)

Implementations§

source§

impl KnownMetadata

source

pub fn is_cdrom(tag: u32) -> bool

Returns whether a given tag indicates that the CHD contains CDROM data.

Trait Implementations§

source§

impl Clone for KnownMetadata

source§

fn clone(&self) -> KnownMetadata

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 FromPrimitive for KnownMetadata

source§

fn from_i64(n: i64) -> Option<Self>

Converts an i64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u64(n: u64) -> Option<Self>

Converts an u64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_isize(n: isize) -> Option<Self>

Converts an isize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i8(n: i8) -> Option<Self>

Converts an i8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i16(n: i16) -> Option<Self>

Converts an i16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i32(n: i32) -> Option<Self>

Converts an i32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_i128(n: i128) -> Option<Self>

Converts an i128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_usize(n: usize) -> Option<Self>

Converts a usize to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u8(n: u8) -> Option<Self>

Converts an u8 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u16(n: u16) -> Option<Self>

Converts an u16 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u32(n: u32) -> Option<Self>

Converts an u32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_u128(n: u128) -> Option<Self>

Converts an u128 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

fn from_f32(n: f32) -> Option<Self>

Converts a f32 to return an optional value of this type. If the value cannot be represented by this type, then None is returned.
source§

fn from_f64(n: f64) -> Option<Self>

Converts a f64 to return an optional value of this type. If the value cannot be represented by this type, then None is returned. Read more
source§

impl MetadataTag for KnownMetadata

source§

fn metatag(&self) -> u32

Returns the FourCC metatag that this struct represents or refers to.
source§

impl Copy for KnownMetadata

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