Type Alias OwnedOneTimeKeyId

Source
pub type OwnedOneTimeKeyId = OwnedKeyId<OneTimeKeyAlgorithm, OneTimeKeyName>;
Expand description

Algorithm + key name for one-time and fallback keys.

Aliased Type§

struct OwnedOneTimeKeyId { /* private fields */ }

Trait Implementations

Source§

impl<A, K> AsRef<[u8]> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn as_ref(&self) -> &[u8]

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

impl<A, K> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn as_ref(&self) -> &KeyId<A, K>

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

impl<A, K> AsRef<str> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn as_ref(&self) -> &str

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

impl<A, K> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn borrow(&self) -> &KeyId<A, K>

Immutably borrows from an owned value. Read more
Source§

impl<A, K> Clone for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn clone(&self) -> OwnedKeyId<A, K>

Returns a copy 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> Debug for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

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

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

impl<A, K> Deref for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

type Target = KeyId<A, K>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<OwnedKeyId<A, K> as Deref>::Target

Dereferences the value.
Source§

impl<'de, A, K> Deserialize<'de> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn deserialize<D>( deserializer: D, ) -> Result<OwnedKeyId<A, K>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<A, K> Display for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

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

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

impl<A, K> From<&KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

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

Converts to this type from the input type.
Source§

impl<A, K> From<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn from(a: Arc<KeyId<A, K>>) -> OwnedKeyId<A, K>

Converts to this type from the input type.
Source§

impl<A, K> From<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn from(b: Box<KeyId<A, K>>) -> OwnedKeyId<A, K>

Converts to this type from the input type.
Source§

impl<A, K> FromStr for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

type Err = Error

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

fn from_str( s: &str, ) -> Result<OwnedKeyId<A, K>, <OwnedKeyId<A, K> as FromStr>::Err>

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

impl<A, K> Hash for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

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

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

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<A, K> Ord for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn cmp(&self, other: &OwnedKeyId<A, K>) -> Ordering

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

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<A, K> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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 OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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> PartialEq<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn eq(&self, other: &Arc<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<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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 OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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 OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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 OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

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> PartialEq for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn eq(&self, other: &OwnedKeyId<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> PartialOrd for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

fn partial_cmp(&self, other: &OwnedKeyId<A, K>) -> 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> Serialize for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

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

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

impl<A, K> TryFrom<&str> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

type Error = Error

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

fn try_from( s: &str, ) -> Result<OwnedKeyId<A, K>, <OwnedKeyId<A, K> as TryFrom<&str>>::Error>

Performs the conversion.
Source§

impl<A, K> TryFrom<String> for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,

Source§

type Error = Error

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

fn try_from( s: String, ) -> Result<OwnedKeyId<A, K>, <OwnedKeyId<A, K> as TryFrom<String>>::Error>

Performs the conversion.
Source§

impl<A, K> Eq for OwnedKeyId<A, K>
where A: KeyAlgorithm, K: KeyName + ?Sized,