[][src]Struct pelite::image::GUID

#[repr(C)]
pub struct GUID {
    pub Data1: u32,
    pub Data2: u16,
    pub Data3: u16,
    pub Data4: [u8; 8],
}

Fields

Data1: u32Data2: u16Data3: u16Data4: [u8; 8]

Trait Implementations

impl Pod for GUID where
    Self: 'static,
    u32: Pod,
    u16: Pod,
    u16: Pod,
    [u8; 8]: Pod
[src]

impl Eq for GUID[src]

impl Clone for GUID[src]

impl PartialEq<GUID> for GUID[src]

impl Copy for GUID[src]

impl Debug for GUID[src]

example: {00000000-0000-0000-c000-000000000046}

impl Display for GUID[src]

example: {00000000-0000-0000-c000-000000000046}

impl LowerHex for GUID[src]

example: 0000000000000000c000000000000046

impl UpperHex for GUID[src]

example: 0000000000000000C000000000000046

impl Serialize for GUID[src]

Auto Trait Implementations

impl Sync for GUID

impl Send for GUID

impl Unpin for GUID

impl UnwindSafe for GUID

impl RefUnwindSafe for GUID

Blanket Implementations

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

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

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