pub struct RawSignature {
pub r_hex: String,
pub s_hex: String,
}Expand description
A raw ECDSA signature as scalars (for unblinding).
Fields§
§r_hex: String§s_hex: StringTrait Implementations§
Source§impl Clone for RawSignature
impl Clone for RawSignature
Source§fn clone(&self) -> RawSignature
fn clone(&self) -> RawSignature
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 RawSignature
impl Debug for RawSignature
Source§impl<'de> Deserialize<'de> for RawSignature
impl<'de> Deserialize<'de> for RawSignature
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RawSignature
impl RefUnwindSafe for RawSignature
impl Send for RawSignature
impl Sync for RawSignature
impl Unpin for RawSignature
impl UnsafeUnpin for RawSignature
impl UnwindSafe for RawSignature
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