Struct ruma_common::OwnedKeyId
source · pub struct OwnedKeyId<A: KeyAlgorithm, K: KeyName + ?Sized> { /* private fields */ }
Expand description
Owned variant of KeyId
The wrapper type for this type is variable, by default it’ll use Box
,
but you can change that by setting “--cfg=ruma_identifiers_storage=...
” using
RUSTFLAGS
or .cargo/config.toml
(under [build]
-> rustflags = ["..."]
)
to the following;
ruma_identifiers_storage="Arc"
to useArc
as a wrapper type.
Methods from Deref<Target = KeyId<A, K>>§
Trait Implementations§
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<[u8]> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<[u8]> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<str> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> AsRef<str> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Clone for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Clone for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Debug for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Debug for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Deref for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Deref for OwnedKeyId<A, K>
source§impl<'de, A: KeyAlgorithm, K: KeyName + ?Sized> Deserialize<'de> for OwnedKeyId<A, K>
impl<'de, A: KeyAlgorithm, K: KeyName + ?Sized> Deserialize<'de> for OwnedKeyId<A, K>
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<A: KeyAlgorithm, K: KeyName + ?Sized> Display for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Display for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<&KeyId<A, K>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<&KeyId<A, K>> for OwnedKeyId<A, K>
source§fn from(id: &KeyId<A, K>) -> OwnedKeyId<A, K>
fn from(id: &KeyId<A, K>) -> OwnedKeyId<A, K>
Converts to this type from the input type.
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for Arc<KeyId<A, K>>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for Arc<KeyId<A, K>>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for String
impl<A: KeyAlgorithm, K: KeyName + ?Sized> From<OwnedKeyId<A, K>> for String
source§fn from(id: OwnedKeyId<A, K>) -> String
fn from(id: OwnedKeyId<A, K>) -> String
Converts to this type from the input type.
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> FromStr for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> FromStr for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Hash for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Hash for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Ord for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Ord for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<&str> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<&str> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for &KeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for &KeyId<A, K>
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for &str
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for &str
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for Arc<KeyId<A, K>>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for Arc<KeyId<A, K>>
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for Box<KeyId<A, K>>
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for KeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for KeyId<A, K>
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for String
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for String
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for str
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<OwnedKeyId<A, K>> for str
source§fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
fn eq(&self, other: &OwnedKeyId<A, K>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<String> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<String> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<str> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq<str> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialEq for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialOrd for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> PartialOrd for OwnedKeyId<A, K>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<A: KeyAlgorithm, K: KeyName + ?Sized> Serialize for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Serialize for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> TryFrom<&str> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> TryFrom<&str> for OwnedKeyId<A, K>
source§impl<A: KeyAlgorithm, K: KeyName + ?Sized> TryFrom<String> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> TryFrom<String> for OwnedKeyId<A, K>
impl<A: KeyAlgorithm, K: KeyName + ?Sized> Eq for OwnedKeyId<A, K>
Auto Trait Implementations§
impl<A, K> Freeze for OwnedKeyId<A, K>where
K: ?Sized,
impl<A, K> RefUnwindSafe for OwnedKeyId<A, K>
impl<A, K> Send for OwnedKeyId<A, K>
impl<A, K> Sync for OwnedKeyId<A, K>
impl<A, K> Unpin for OwnedKeyId<A, K>where
K: ?Sized,
impl<A, K> UnwindSafe for OwnedKeyId<A, K>
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.