Struct tor_netdoc::doc::netstatus::SignatureGroup
source · #[non_exhaustive]pub struct SignatureGroup {
pub sha256: Option<[u8; 32]>,
pub sha1: Option<[u8; 20]>,
pub signatures: Vec<Signature>,
}
Expand description
A collection of signatures that can be checked on a networkstatus document
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.sha256: Option<[u8; 32]>
Available on crate feature
dangerous-expose-struct-fields
only.The sha256 of the document itself
sha1: Option<[u8; 20]>
Available on crate feature
dangerous-expose-struct-fields
only.The sha1 of the document itself
signatures: Vec<Signature>
Available on crate feature
dangerous-expose-struct-fields
only.The signatures listed on the document.
Trait Implementations§
source§impl Clone for SignatureGroup
impl Clone for SignatureGroup
source§fn clone(&self) -> SignatureGroup
fn clone(&self) -> SignatureGroup
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 moreAuto Trait Implementations§
impl RefUnwindSafe for SignatureGroup
impl Send for SignatureGroup
impl Sync for SignatureGroup
impl Unpin for SignatureGroup
impl UnwindSafe for SignatureGroup
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