pub struct AttestResponse {
pub attestation: String,
}Expand description
Response containing a versioned attestation
Fields§
§attestation: StringThe attestation in hexadecimal format
Implementations§
Source§impl AttestResponse
impl AttestResponse
pub fn decode_attestation(&self) -> Result<Vec<u8>, FromHexError>
Trait Implementations§
Source§impl Debug for AttestResponse
impl Debug for AttestResponse
Source§impl<'de> Deserialize<'de> for AttestResponse
impl<'de> Deserialize<'de> for AttestResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AttestResponse
impl RefUnwindSafe for AttestResponse
impl Send for AttestResponse
impl Sync for AttestResponse
impl Unpin for AttestResponse
impl UnsafeUnpin for AttestResponse
impl UnwindSafe for AttestResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more