pub struct SignWithEcdsaArgs {
pub message_hash: Vec<u8>,
pub derivation_path: Vec<Vec<u8>>,
pub key_id: EcdsaKeyId,
}Expand description
§Sign With ECDSA Args.
Argument type of sign_with_ecdsa.
Fields§
§message_hash: Vec<u8>Hash of the message with length of 32 bytes.
derivation_path: Vec<Vec<u8>>A vector of variable length byte strings.
key_id: EcdsaKeyIdThe key ID.
Trait Implementations§
Source§impl CandidType for SignWithEcdsaArgs
impl CandidType for SignWithEcdsaArgs
Source§impl Clone for SignWithEcdsaArgs
impl Clone for SignWithEcdsaArgs
Source§fn clone(&self) -> SignWithEcdsaArgs
fn clone(&self) -> SignWithEcdsaArgs
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 SignWithEcdsaArgs
impl Debug for SignWithEcdsaArgs
Source§impl Default for SignWithEcdsaArgs
impl Default for SignWithEcdsaArgs
Source§fn default() -> SignWithEcdsaArgs
fn default() -> SignWithEcdsaArgs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignWithEcdsaArgs
impl<'de> Deserialize<'de> for SignWithEcdsaArgs
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignWithEcdsaArgs, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SignWithEcdsaArgs, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for SignWithEcdsaArgs
impl Hash for SignWithEcdsaArgs
Source§impl Ord for SignWithEcdsaArgs
impl Ord for SignWithEcdsaArgs
Source§fn cmp(&self, other: &SignWithEcdsaArgs) -> Ordering
fn cmp(&self, other: &SignWithEcdsaArgs) -> 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 SignWithEcdsaArgs
impl PartialEq for SignWithEcdsaArgs
Source§impl PartialOrd for SignWithEcdsaArgs
impl PartialOrd for SignWithEcdsaArgs
Source§impl Serialize for SignWithEcdsaArgs
impl Serialize for SignWithEcdsaArgs
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 SignWithEcdsaArgs
impl StructuralPartialEq for SignWithEcdsaArgs
Auto Trait Implementations§
impl Freeze for SignWithEcdsaArgs
impl RefUnwindSafe for SignWithEcdsaArgs
impl Send for SignWithEcdsaArgs
impl Sync for SignWithEcdsaArgs
impl Unpin for SignWithEcdsaArgs
impl UnwindSafe for SignWithEcdsaArgs
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