Struct AnyKeyName

Source
pub struct AnyKeyName(/* private fields */);
Expand description

An opaque identifier type to use with KeyId.

This type has no semantic value and no validation is done. It is meant to be able to use the KeyId API without validating the key name.

Implementations§

Source§

impl AnyKeyName

Source

pub fn as_str(&self) -> &str

Available on crate feature events only.

Creates a string slice from this AnyKeyName.

Source

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

Available on crate feature events only.

Creates a byte slice from this AnyKeyName.

Trait Implementations§

Source§

impl AsRef<[u8]> for AnyKeyName

Source§

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

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

impl AsRef<[u8]> for Box<AnyKeyName>

Source§

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

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

impl AsRef<AnyKeyName> for AnyKeyName

Source§

fn as_ref(&self) -> &AnyKeyName

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

impl AsRef<str> for AnyKeyName

Source§

fn as_ref(&self) -> &str

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

impl AsRef<str> for Box<AnyKeyName>

Source§

fn as_ref(&self) -> &str

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

impl Clone for Box<AnyKeyName>

Source§

fn clone(&self) -> Box<AnyKeyName>

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 Debug for AnyKeyName

Source§

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

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

impl<'de> Deserialize<'de> for Box<AnyKeyName>

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Box<AnyKeyName>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

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

impl Display for AnyKeyName

Source§

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

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

impl From<&AnyKeyName> for Arc<AnyKeyName>

Source§

fn from(s: &AnyKeyName) -> Arc<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<&AnyKeyName> for Box<AnyKeyName>

Source§

fn from(id: &AnyKeyName) -> Box<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<&AnyKeyName> for Rc<AnyKeyName>

Source§

fn from(s: &AnyKeyName) -> Rc<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<&AnyKeyName> for String

Source§

fn from(id: &AnyKeyName) -> String

Converts to this type from the input type.
Source§

impl<'a> From<&'a str> for &'a AnyKeyName

Source§

fn from(s: &'a str) -> &'a AnyKeyName

Converts to this type from the input type.
Source§

impl From<&str> for Box<AnyKeyName>

Source§

fn from(s: &str) -> Box<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<Box<str>> for Box<AnyKeyName>

Source§

fn from(s: Box<str>) -> Box<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<OwnedAnyKeyName> for Box<AnyKeyName>

Source§

fn from(a: OwnedAnyKeyName) -> Box<AnyKeyName>

Converts to this type from the input type.
Source§

impl From<String> for Box<AnyKeyName>

Source§

fn from(s: String) -> Box<AnyKeyName>

Converts to this type from the input type.
Source§

impl Hash for AnyKeyName

Source§

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

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

impl KeyName for AnyKeyName

Source§

fn validate(_s: &str) -> Result<(), Error>

Validate the given string for this name.
Source§

impl Ord for AnyKeyName

Source§

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

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

impl PartialEq<&AnyKeyName> for Box<AnyKeyName>

Source§

fn eq(&self, other: &&AnyKeyName) -> 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 PartialEq<&str> for AnyKeyName

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 PartialEq<&str> for Box<AnyKeyName>

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 PartialEq<AnyKeyName> for &str

Source§

fn eq(&self, other: &AnyKeyName) -> 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 PartialEq<AnyKeyName> for Box<AnyKeyName>

Source§

fn eq(&self, other: &AnyKeyName) -> 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 PartialEq<AnyKeyName> for str

Source§

fn eq(&self, other: &AnyKeyName) -> 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 PartialEq<Box<AnyKeyName>> for &AnyKeyName

Source§

fn eq(&self, other: &Box<AnyKeyName>) -> 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 PartialEq<Box<AnyKeyName>> for AnyKeyName

Source§

fn eq(&self, other: &Box<AnyKeyName>) -> 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 PartialEq<OwnedAnyKeyName> for &AnyKeyName

Source§

fn eq(&self, other: &OwnedAnyKeyName) -> 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 PartialEq<OwnedAnyKeyName> for AnyKeyName

Source§

fn eq(&self, other: &OwnedAnyKeyName) -> 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 PartialEq<OwnedAnyKeyName> for Box<AnyKeyName>

Source§

fn eq(&self, other: &OwnedAnyKeyName) -> 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 PartialEq<String> for AnyKeyName

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 PartialEq<String> for Box<AnyKeyName>

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 PartialEq<str> for AnyKeyName

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 PartialEq<str> for Box<AnyKeyName>

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 PartialEq for AnyKeyName

Source§

fn eq(&self, other: &AnyKeyName) -> 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 PartialOrd for AnyKeyName

Source§

fn partial_cmp(&self, other: &AnyKeyName) -> 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 Serialize for AnyKeyName

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 ToOwned for AnyKeyName

Source§

type Owned = OwnedAnyKeyName

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> <AnyKeyName as ToOwned>::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 Eq for AnyKeyName

Source§

impl StructuralPartialEq for AnyKeyName

Auto Trait Implementations§

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<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

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

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
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