[][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".

Examples

use genie_drs::ResourceType;
let slp = ResourceType::from(*b" pls");
assert_eq!(&slp, "slp", "implements AsRef<str>");
assert_eq!(slp.to_string(), "slp", "implements ToString");
assert_eq!(slp, ResourceType::from(*b" pls"));
let bina = "bina".parse::<ResourceType>()?;
assert_ne!(slp, bina);

Trait Implementations

impl AsRef<str> for ResourceType[src]

impl Clone for ResourceType[src]

impl Copy for ResourceType[src]

impl Debug for ResourceType[src]

impl Eq 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 From<[u8; 4]> for ResourceType[src]

impl FromStr for ResourceType[src]

type Err = ParseResourceTypeError

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

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

impl PartialEq<ResourceType> for ResourceType[src]

impl PartialEq<str> for ResourceType[src]

impl StructuralEq for ResourceType[src]

impl StructuralPartialEq for ResourceType[src]

impl ToString for ResourceType[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.