pub struct Signature {
pub r: Felt,
pub s: Felt,
}
Expand description
Stark ECDSA signature.
Fields§
§r: Felt
The r
value of a signature
s: Felt
The s
value of a signature
Trait Implementations§
Source§impl From<ExtendedSignature> for Signature
impl From<ExtendedSignature> for Signature
Source§fn from(value: ExtendedSignature) -> Self
fn from(value: ExtendedSignature) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Signature
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