Signature

Struct Signature 

Source
pub struct Signature(/* private fields */);

Implementations§

Source§

impl Signature

Source

pub const RSDT: Signature

Source

pub const XSDT: Signature

Source

pub const FADT: Signature

Source

pub const HPET: Signature

Source

pub const MADT: Signature

Source

pub const MCFG: Signature

Source

pub const SSDT: Signature

Source

pub const BERT: Signature

Source

pub const BGRT: Signature

Source

pub const CPEP: Signature

Source

pub const DSDT: Signature

Source

pub const ECDT: Signature

Source

pub const EINJ: Signature

Source

pub const ERST: Signature

Source

pub const FACS: Signature

Source

pub const FPDT: Signature

Source

pub const GTDT: Signature

Source

pub const HEST: Signature

Source

pub const MSCT: Signature

Source

pub const MPST: Signature

Source

pub const NFIT: Signature

Source

pub const PCCT: Signature

Source

pub const PHAT: Signature

Source

pub const PMTT: Signature

Source

pub const PSDT: Signature

Source

pub const RASF: Signature

Source

pub const SBST: Signature

Source

pub const SDEV: Signature

Source

pub const SLIT: Signature

Source

pub const SRAT: Signature

Source

pub const AEST: Signature

Source

pub const BDAT: Signature

Source

pub const CDIT: Signature

Source

pub const CEDT: Signature

Source

pub const CRAT: Signature

Source

pub const CSRT: Signature

Source

pub const DBGP: Signature

Source

pub const DBG2: Signature

Source

pub const DMAR: Signature

Source

pub const DRTM: Signature

Source

pub const ETDT: Signature

Source

pub const IBFT: Signature

Source

pub const IORT: Signature

Source

pub const IVRS: Signature

Source

pub const LPIT: Signature

Source

pub const MCHI: Signature

Source

pub const MPAM: Signature

Source

pub const MSDM: Signature

Source

pub const PRMT: Signature

Source

pub const RGRT: Signature

Source

pub const SDEI: Signature

Source

pub const SLIC: Signature

Source

pub const SPCR: Signature

Source

pub const SPMI: Signature

Source

pub const STAO: Signature

Source

pub const SVKL: Signature

Source

pub const TCPA: Signature

Source

pub const TPM2: Signature

Source

pub const UEFI: Signature

Source

pub const WAET: Signature

Source

pub const WDAT: Signature

Source

pub const WDRT: Signature

Source

pub const WPBT: Signature

Source

pub const WSMT: Signature

Source

pub const XENV: Signature

Source

pub fn as_str(&self) -> &str

Trait Implementations§

Source§

impl Clone for Signature

Source§

fn clone(&self) -> Signature

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Signature

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Signature

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Ord for Signature

Source§

fn cmp(&self, other: &Signature) -> Ordering

This method returns an [Ordering] between self and other. Read more
1.21.0§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Signature

Source§

fn eq(&self, other: &Signature) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Signature

Source§

fn partial_cmp(&self, other: &Signature) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Copy for Signature

Source§

impl Eq for Signature

Source§

impl StructuralPartialEq for Signature

Auto Trait Implementations§

§

impl Freeze for Signature

§

impl RefUnwindSafe for Signature

§

impl Send for Signature

§

impl Sync for Signature

§

impl Unpin for Signature

§

impl UnwindSafe for Signature

Blanket Implementations§

§

impl<T> Any for T
where T: 'static + ?Sized,

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> Borrow<T> for T
where T: ?Sized,

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

impl<T> BorrowMut<T> for T
where T: ?Sized,

§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, U> Into<U> for T
where U: From<T>,

§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> ToString for T
where T: Display + ?Sized,

§

fn to_string(&self) -> String

Converts the given value to a String. Read more
§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
§

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

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.