[][src]Struct sgx_quote::Quote

pub struct Quote<'a> {
    pub header: Header<'a>,
    pub isv_report: ReportBody<'a>,
    pub signature: Signature<'a>,
    // some fields omitted
}

Fields

header: Header<'a>isv_report: ReportBody<'a>signature: Signature<'a>

Methods

impl<'a> Quote<'a>[src]

An Intel SGX Version 3 quote, as specified in

pub fn parse(quote_bytes: &'a [u8]) -> Result<Self, Err<(&'a [u8], ErrorKind)>>[src]

pub fn signed_message(&self) -> &[u8][src]

Returns the part of the quote that's signed by the AK (i.e. header || isv_report).

Trait Implementations

impl<'a> Clone for Quote<'a>[src]

impl<'a> PartialEq<Quote<'a>> for Quote<'a>[src]

impl<'a> Debug for Quote<'a>[src]

Auto Trait Implementations

impl<'a> Send for Quote<'a>

impl<'a> Unpin for Quote<'a>

impl<'a> Sync for Quote<'a>

impl<'a> UnwindSafe for Quote<'a>

impl<'a> RefUnwindSafe for Quote<'a>

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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]