pub enum BaseKeyType {
Ed25519,
}
Expand description
Enum representing the type of base key used for the identity.
Currently, only Ed25519 is supported.
Variants§
Ed25519
Ed25519 base key type.
Trait Implementations§
Source§impl Clone for BaseKeyType
impl Clone for BaseKeyType
Source§fn clone(&self) -> BaseKeyType
fn clone(&self) -> BaseKeyType
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 BaseKeyType
impl Debug for BaseKeyType
Source§impl Default for BaseKeyType
impl Default for BaseKeyType
Source§fn default() -> BaseKeyType
fn default() -> BaseKeyType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BaseKeyType
impl<'de> Deserialize<'de> for BaseKeyType
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 Display for BaseKeyType
impl Display for BaseKeyType
Source§impl PartialEq for BaseKeyType
impl PartialEq for BaseKeyType
Source§impl Serialize for BaseKeyType
impl Serialize for BaseKeyType
impl Copy for BaseKeyType
impl StructuralPartialEq for BaseKeyType
Auto Trait Implementations§
impl Freeze for BaseKeyType
impl RefUnwindSafe for BaseKeyType
impl Send for BaseKeyType
impl Sync for BaseKeyType
impl Unpin for BaseKeyType
impl UnwindSafe for BaseKeyType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string
, but without panic on OOM.