pub struct EcdsaKeyId {
pub curve: EcdsaCurve,
pub name: String,
}Expand description
§ECDSA Key ID.
See EcdsaPublicKeyArgs::key_id and SignWithEcdsaArgs::key_id.
Fields§
§curve: EcdsaCurveCurve of the key.
name: StringName of the key.
Trait Implementations§
Source§impl CandidType for EcdsaKeyId
impl CandidType for EcdsaKeyId
Source§impl Clone for EcdsaKeyId
impl Clone for EcdsaKeyId
Source§fn clone(&self) -> EcdsaKeyId
fn clone(&self) -> EcdsaKeyId
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 EcdsaKeyId
impl Debug for EcdsaKeyId
Source§impl Default for EcdsaKeyId
impl Default for EcdsaKeyId
Source§fn default() -> EcdsaKeyId
fn default() -> EcdsaKeyId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EcdsaKeyId
impl<'de> Deserialize<'de> for EcdsaKeyId
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<EcdsaKeyId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<EcdsaKeyId, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for EcdsaKeyId
impl Hash for EcdsaKeyId
Source§impl Ord for EcdsaKeyId
impl Ord for EcdsaKeyId
Source§fn cmp(&self, other: &EcdsaKeyId) -> Ordering
fn cmp(&self, other: &EcdsaKeyId) -> 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 EcdsaKeyId
impl PartialEq for EcdsaKeyId
Source§impl PartialOrd for EcdsaKeyId
impl PartialOrd for EcdsaKeyId
Source§impl Serialize for EcdsaKeyId
impl Serialize for EcdsaKeyId
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 EcdsaKeyId
impl StructuralPartialEq for EcdsaKeyId
Auto Trait Implementations§
impl Freeze for EcdsaKeyId
impl RefUnwindSafe for EcdsaKeyId
impl Send for EcdsaKeyId
impl Sync for EcdsaKeyId
impl Unpin for EcdsaKeyId
impl UnwindSafe for EcdsaKeyId
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