pub enum PasskeyPubKeyCredParamType {
PublicKey,
}Expand description
PasskeyPubKeyCredParamType
JSON schema
{
"type": "string",
"enum": [
"public-key"
]
}Variants§
PublicKey
Trait Implementations§
Source§impl Clone for PasskeyPubKeyCredParamType
impl Clone for PasskeyPubKeyCredParamType
Source§fn clone(&self) -> PasskeyPubKeyCredParamType
fn clone(&self) -> PasskeyPubKeyCredParamType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PasskeyPubKeyCredParamType
Source§impl Debug for PasskeyPubKeyCredParamType
impl Debug for PasskeyPubKeyCredParamType
Source§impl<'de> Deserialize<'de> for PasskeyPubKeyCredParamType
impl<'de> Deserialize<'de> for PasskeyPubKeyCredParamType
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 PasskeyPubKeyCredParamType
impl Display for PasskeyPubKeyCredParamType
impl Eq for PasskeyPubKeyCredParamType
Source§impl From<&PasskeyPubKeyCredParamType> for PasskeyPubKeyCredParamType
impl From<&PasskeyPubKeyCredParamType> for PasskeyPubKeyCredParamType
Source§fn from(value: &PasskeyPubKeyCredParamType) -> Self
fn from(value: &PasskeyPubKeyCredParamType) -> Self
Converts to this type from the input type.
Source§impl FromStr for PasskeyPubKeyCredParamType
impl FromStr for PasskeyPubKeyCredParamType
Source§impl Hash for PasskeyPubKeyCredParamType
impl Hash for PasskeyPubKeyCredParamType
Source§impl Ord for PasskeyPubKeyCredParamType
impl Ord for PasskeyPubKeyCredParamType
Source§fn cmp(&self, other: &PasskeyPubKeyCredParamType) -> Ordering
fn cmp(&self, other: &PasskeyPubKeyCredParamType) -> Ordering
1.21.0 (const: unstable) · 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 PasskeyPubKeyCredParamType
impl PartialEq for PasskeyPubKeyCredParamType
Source§fn eq(&self, other: &PasskeyPubKeyCredParamType) -> bool
fn eq(&self, other: &PasskeyPubKeyCredParamType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PasskeyPubKeyCredParamType
impl PartialOrd for PasskeyPubKeyCredParamType
impl StructuralPartialEq for PasskeyPubKeyCredParamType
Source§impl TryFrom<&String> for PasskeyPubKeyCredParamType
impl TryFrom<&String> for PasskeyPubKeyCredParamType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for PasskeyPubKeyCredParamType
impl TryFrom<&str> for PasskeyPubKeyCredParamType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for PasskeyPubKeyCredParamType
impl TryFrom<String> for PasskeyPubKeyCredParamType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for PasskeyPubKeyCredParamType
impl RefUnwindSafe for PasskeyPubKeyCredParamType
impl Send for PasskeyPubKeyCredParamType
impl Sync for PasskeyPubKeyCredParamType
impl Unpin for PasskeyPubKeyCredParamType
impl UnsafeUnpin for PasskeyPubKeyCredParamType
impl UnwindSafe for PasskeyPubKeyCredParamType
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