pub struct SignatureStanza {
pub verifying_key: Vec<u8>,
pub signature: Vec<u8>,
}Expand description
A public signature over the container, readable by anyone holding the file. Confidential signatures live inside the encrypted metadata instead.
Fields§
§verifying_key: Vec<u8>§signature: Vec<u8>Trait Implementations§
Source§impl Clone for SignatureStanza
impl Clone for SignatureStanza
Source§fn clone(&self) -> SignatureStanza
fn clone(&self) -> SignatureStanza
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SignatureStanza
impl Debug for SignatureStanza
impl Eq for SignatureStanza
Source§impl PartialEq for SignatureStanza
impl PartialEq for SignatureStanza
impl StructuralPartialEq for SignatureStanza
Auto Trait Implementations§
impl Freeze for SignatureStanza
impl RefUnwindSafe for SignatureStanza
impl Send for SignatureStanza
impl Sync for SignatureStanza
impl Unpin for SignatureStanza
impl UnsafeUnpin for SignatureStanza
impl UnwindSafe for SignatureStanza
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