[][src]Struct genie_drs::ResourceType

pub struct ResourceType(_);

A resource type name.

In a .drs archive, type names are represented as 4 bytes. They are laid out in reverse order and padded with ASCII space characters (' '). For example, the "slp" resource type is stored as " pls".

Trait Implementations

impl Clone for ResourceType[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<[u8; 4]> for ResourceType[src]

impl<'_> From<&'_ [u8]> for ResourceType[src]

Parse a resource type from a byte slice, panics if the slice is too long to fit.

impl<'_> From<&'_ str> for ResourceType[src]

Parse a resource type from a string, panics if the string is too long to fit (>4 bytes).

impl ToString for ResourceType[src]

impl PartialEq<ResourceType> for ResourceType[src]

impl Copy for ResourceType[src]

impl Eq for ResourceType[src]

impl Debug for ResourceType[src]

impl FromStr for ResourceType[src]

Parse a resource type from a string, with error handling.

type Err = ParseResourceTypeError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]