pub struct Ed25519Key {
pub public: Decoded<Hex>,
pub _extra: HashMap<String, Value>,
}Expand description
Represents a deserialized (decoded) Ed25519 public key.
Fields§
§public: Decoded<Hex>The public key.
_extra: HashMap<String, Value>Any additional fields read during deserialization; will not be used.
Trait Implementations§
Source§impl Clone for Ed25519Key
impl Clone for Ed25519Key
Source§fn clone(&self) -> Ed25519Key
fn clone(&self) -> Ed25519Key
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 Ed25519Key
impl Debug for Ed25519Key
Source§impl<'de> Deserialize<'de> for Ed25519Key
impl<'de> Deserialize<'de> for Ed25519Key
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
Source§impl PartialEq for Ed25519Key
impl PartialEq for Ed25519Key
Source§impl Serialize for Ed25519Key
impl Serialize for Ed25519Key
impl Eq for Ed25519Key
impl StructuralPartialEq for Ed25519Key
Auto Trait Implementations§
impl Freeze for Ed25519Key
impl RefUnwindSafe for Ed25519Key
impl Send for Ed25519Key
impl Sync for Ed25519Key
impl Unpin for Ed25519Key
impl UnwindSafe for Ed25519Key
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