Struct riot_sys::cose_signature
source · #[repr(C)]pub struct cose_signature {
pub next: *mut cose_signature,
pub hdrs: cose_headers_t,
pub signature: *const u8,
pub signature_len: size_t,
pub signer: *const cose_key_t,
}
Expand description
@name Signature struct @brief Contains signature and headers related to the signatures @{
Fields§
§next: *mut cose_signature
< Next signature in list
hdrs: cose_headers_t
< Headers
signature: *const u8
< Pointer to the signature
signature_len: size_t
< Length of the signature
signer: *const cose_key_t
< Pointer to the signer used for this signature
Trait Implementations§
source§impl Clone for cose_signature
impl Clone for cose_signature
source§fn clone(&self) -> cose_signature
fn clone(&self) -> cose_signature
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for cose_signature
impl Debug for cose_signature
source§impl Default for cose_signature
impl Default for cose_signature
impl Copy for cose_signature
Auto Trait Implementations§
impl RefUnwindSafe for cose_signature
impl !Send for cose_signature
impl !Sync for cose_signature
impl Unpin for cose_signature
impl UnwindSafe for cose_signature
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