pub struct SignWithEcdsaResult {
pub signature: Vec<u8>,
}Expand description
§Sign With ECDSA Result.
Result type of sign_with_ecdsa.
Fields§
§signature: Vec<u8>Encoded as the concatenation of the SEC1 encodings of the two values r and s.
Trait Implementations§
Source§impl CandidType for SignWithEcdsaResult
impl CandidType for SignWithEcdsaResult
Source§impl Clone for SignWithEcdsaResult
impl Clone for SignWithEcdsaResult
Source§fn clone(&self) -> SignWithEcdsaResult
fn clone(&self) -> SignWithEcdsaResult
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 moreSource§impl Debug for SignWithEcdsaResult
impl Debug for SignWithEcdsaResult
Source§impl Default for SignWithEcdsaResult
impl Default for SignWithEcdsaResult
Source§fn default() -> SignWithEcdsaResult
fn default() -> SignWithEcdsaResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignWithEcdsaResult
impl<'de> Deserialize<'de> for SignWithEcdsaResult
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignWithEcdsaResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignWithEcdsaResult, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SignWithEcdsaResult
impl Hash for SignWithEcdsaResult
Source§impl Ord for SignWithEcdsaResult
impl Ord for SignWithEcdsaResult
Source§fn cmp(&self, other: &SignWithEcdsaResult) -> Ordering
fn cmp(&self, other: &SignWithEcdsaResult) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SignWithEcdsaResult
impl PartialEq for SignWithEcdsaResult
Source§impl PartialOrd for SignWithEcdsaResult
impl PartialOrd for SignWithEcdsaResult
Source§impl Serialize for SignWithEcdsaResult
impl Serialize for SignWithEcdsaResult
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SignWithEcdsaResult
impl StructuralPartialEq for SignWithEcdsaResult
Auto Trait Implementations§
impl Freeze for SignWithEcdsaResult
impl RefUnwindSafe for SignWithEcdsaResult
impl Send for SignWithEcdsaResult
impl Sync for SignWithEcdsaResult
impl Unpin for SignWithEcdsaResult
impl UnwindSafe for SignWithEcdsaResult
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