[][src]Struct uefi::Guid

#[repr(C)]pub struct Guid { /* fields omitted */ }

A globally unique identifier

GUIDs are used by UEFI to identify protocols and other objects. They are mostly like variant 2 UUIDs as specified by RFC 4122, but differ from them in that the first 3 fields are little endian instead of big endian.

The Display formatter prints GUIDs in the canonical format defined by RFC 4122, which is also used by UEFI.

Implementations

impl Guid[src]

pub const fn from_values(
    time_low: u32,
    time_mid: u16,
    time_high_and_version: u16,
    clock_seq_and_variant: u16,
    node: [u8; 6]
) -> Self
[src]

Creates a new GUID from its canonical representation

Trait Implementations

impl Clone for Guid[src]

impl Copy for Guid[src]

impl Debug for Guid[src]

impl Display for Guid[src]

impl Eq for Guid[src]

impl PartialEq<Guid> for Guid[src]

impl StructuralEq for Guid[src]

impl StructuralPartialEq for Guid[src]

Auto Trait Implementations

impl Send for Guid

impl Sync for Guid

impl Unpin for Guid

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