Struct trezor_client::client::Signature
source · pub struct Signature {
pub r: [u8; 32],
pub s: [u8; 32],
pub v: u64,
}
Available on crate feature
ethereum
only.Expand description
An ECDSA signature.
Fields§
§r: [u8; 32]
R value
s: [u8; 32]
S Value
v: u64
V value in ‘Electrum’ notation.
Trait Implementations§
source§impl PartialEq for Signature
impl PartialEq for Signature
impl Copy for Signature
impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
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