pub struct SignatureComponents {
pub r: Vec<u8>,
pub s: Vec<u8>,
}Expand description
ECDSA signature components (r, s)
Fields§
§r: Vec<u8>§s: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for SignatureComponents
impl Clone for SignatureComponents
Source§fn clone(&self) -> SignatureComponents
fn clone(&self) -> SignatureComponents
Returns a duplicate 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 Freeze for SignatureComponents
impl RefUnwindSafe for SignatureComponents
impl Send for SignatureComponents
impl Sync for SignatureComponents
impl Unpin for SignatureComponents
impl UnwindSafe for SignatureComponents
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