pub enum ConfigPublicKey {
Ed25519 {
key: [u8; 32],
},
}Variants§
Trait Implementations§
Source§impl Clone for ConfigPublicKey
impl Clone for ConfigPublicKey
Source§fn clone(&self) -> ConfigPublicKey
fn clone(&self) -> ConfigPublicKey
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 ConfigPublicKey
impl Debug for ConfigPublicKey
Source§impl<'de> Deserialize<'de> for ConfigPublicKey
impl<'de> Deserialize<'de> for ConfigPublicKey
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
Auto Trait Implementations§
impl Freeze for ConfigPublicKey
impl RefUnwindSafe for ConfigPublicKey
impl Send for ConfigPublicKey
impl Sync for ConfigPublicKey
impl Unpin for ConfigPublicKey
impl UnwindSafe for ConfigPublicKey
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