pub struct SignatureHashAlgorithm {
pub hash: HashAlgorithm,
pub signature: SignatureAlgorithm,
}
Fields
hash: HashAlgorithm
signature: SignatureAlgorithm
Trait Implementations
sourceimpl Clone for SignatureHashAlgorithm
impl Clone for SignatureHashAlgorithm
sourcefn clone(&self) -> SignatureHashAlgorithm
fn clone(&self) -> SignatureHashAlgorithm
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SignatureHashAlgorithm
impl Debug for SignatureHashAlgorithm
sourceimpl PartialEq<SignatureHashAlgorithm> for SignatureHashAlgorithm
impl PartialEq<SignatureHashAlgorithm> for SignatureHashAlgorithm
sourcefn eq(&self, other: &SignatureHashAlgorithm) -> bool
fn eq(&self, other: &SignatureHashAlgorithm) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SignatureHashAlgorithm) -> bool
fn ne(&self, other: &SignatureHashAlgorithm) -> bool
This method tests for !=
.
impl Copy for SignatureHashAlgorithm
impl Eq for SignatureHashAlgorithm
impl StructuralEq for SignatureHashAlgorithm
impl StructuralPartialEq for SignatureHashAlgorithm
Auto Trait Implementations
impl RefUnwindSafe for SignatureHashAlgorithm
impl Send for SignatureHashAlgorithm
impl Sync for SignatureHashAlgorithm
impl Unpin for SignatureHashAlgorithm
impl UnwindSafe for SignatureHashAlgorithm
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more