KeyId

Struct KeyId 

Source
pub struct KeyId<A, K: ?Sized>(/* private fields */);
Expand description

A key algorithm and key name delimited by a colon.

Implementations§

Source§

impl<A, K: ?Sized> KeyId<A, K>

Source

pub fn from_parts(algorithm: A, key_name: &K) -> Box<Self>
where A: AsRef<str>, K: AsRef<str>,

Creates a new KeyId from an algorithm and key name.

Source

pub fn algorithm(&self) -> A
where A: FromStr,

Returns key algorithm of the key ID.

Source

pub fn key_name<'a>(&'a self) -> &'a K
where &'a K: From<&'a str>,

Returns the key name of the key ID.

Source

pub fn as_str(&self) -> &str

Creates a string slice from this KeyId.

Source

pub fn as_bytes(&self) -> &[u8]

Creates a byte slice from this KeyId.

Trait Implementations§

Source§

impl<A, K: ?Sized> AsRef<str> for Box<KeyId<A, K>>

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<A, K: ?Sized> AsRef<str> for KeyId<A, K>

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl<A, K: ?Sized> Clone for Box<KeyId<A, K>>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<A, K: ?Sized> Debug for KeyId<A, K>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, A, K: ?Sized> Deserialize<'de> for Box<KeyId<A, K>>

Available on crate feature serde only.
Source§

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<A, K: ?Sized> Display for KeyId<A, K>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<A, K: ?Sized> From<&KeyId<A, K>> for Arc<KeyId<A, K>>

Source§

fn from(s: &KeyId<A, K>) -> Arc<KeyId<A, K>>

Converts to this type from the input type.
Source§

impl<A, K: ?Sized> From<&KeyId<A, K>> for Box<KeyId<A, K>>

Source§

fn from(id: &KeyId<A, K>) -> Self

Converts to this type from the input type.
Source§

impl<A, K: ?Sized> From<&KeyId<A, K>> for Rc<KeyId<A, K>>

Source§

fn from(s: &KeyId<A, K>) -> Rc<KeyId<A, K>>

Converts to this type from the input type.
Source§

impl<A, K: ?Sized> FromStr for Box<KeyId<A, K>>

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl<A, K: ?Sized> Hash for KeyId<A, K>

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
Source§

impl<A, K: ?Sized> Ord for KeyId<A, K>

Source§

fn cmp(&self, other: &Self) -> Ordering

This method returns an Ordering between self and other. Read more
Source§

impl<A, K: ?Sized> PartialEq<&KeyId<A, K>> for Box<KeyId<A, K>>

Source§

fn eq(&self, other: &&KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<&str> for KeyId<A, K>

Source§

fn eq(&self, other: &&str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K: ?Sized> PartialEq<Box<KeyId<A, K>>> for &KeyId<A, K>

Source§

fn eq(&self, other: &Box<KeyId<A, K>>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K: ?Sized> PartialEq<Box<KeyId<A, K>>> for KeyId<A, K>

Source§

fn eq(&self, other: &Box<KeyId<A, K>>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<KeyId<A, K>> for &str

Source§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K: ?Sized> PartialEq<KeyId<A, K>> for Box<KeyId<A, K>>

Source§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<KeyId<A, K>> for String

Source§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<KeyId<A, K>> for str

Source§

fn eq(&self, other: &KeyId<A, K>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<String> for KeyId<A, K>

Source§

fn eq(&self, other: &String) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K> PartialEq<str> for KeyId<A, K>

Source§

fn eq(&self, other: &str) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K: ?Sized> PartialEq for KeyId<A, K>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<A, K: ?Sized> PartialOrd for KeyId<A, K>

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<A, K: ?Sized> Serialize for KeyId<A, K>

Available on crate feature serde only.
Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<A, K: ?Sized> ToOwned for KeyId<A, K>

Source§

type Owned = Box<KeyId<A, K>>

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> Self::Owned

Creates owned data from borrowed data, usually by cloning. Read more
1.63.0 · Source§

fn clone_into(&self, target: &mut Self::Owned)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<'a, A, K: ?Sized> TryFrom<&'a str> for &'a KeyId<A, K>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(s: &'a str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<A, K: ?Sized> TryFrom<&str> for Box<KeyId<A, K>>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(s: &str) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<A, K: ?Sized> TryFrom<String> for Box<KeyId<A, K>>

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(s: String) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<A, K: ?Sized> Eq for KeyId<A, K>

Auto Trait Implementations§

§

impl<A, K> Freeze for KeyId<A, K>
where K: ?Sized,

§

impl<A, K> RefUnwindSafe for KeyId<A, K>

§

impl<A, K> Send for KeyId<A, K>
where A: Send, K: Send + ?Sized,

§

impl<A, K> !Sized for KeyId<A, K>

§

impl<A, K> Sync for KeyId<A, K>
where A: Sync, K: Sync + ?Sized,

§

impl<A, K> Unpin for KeyId<A, K>
where A: Unpin, K: Unpin + ?Sized,

§

impl<A, K> UnwindSafe for KeyId<A, K>
where A: UnwindSafe, K: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more