pub type cose_signature_t = cose_signature;
Aliased Type§
struct cose_signature_t {
pub next: *mut cose_signature,
pub hdrs: cose_headers_t,
pub signature: *const u8,
pub signature_len: u32,
pub signer: *const cose_key,
}
Fields§
§next: *mut cose_signature
§hdrs: cose_headers_t
§signature: *const u8
§signature_len: u32
§signer: *const cose_key
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes
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 more