pub struct OwnedKeyId<A, K: ?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.
Trait Implementations§
Source§impl<A, K: ?Sized> Clone for OwnedKeyId<A, K>
impl<A, K: ?Sized> Clone for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> Debug for OwnedKeyId<A, K>
impl<A, K: ?Sized> Debug for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> Deref for OwnedKeyId<A, K>
impl<A, K: ?Sized> Deref for OwnedKeyId<A, K>
Source§impl<'de, A, K: ?Sized> Deserialize<'de> for OwnedKeyId<A, K>
impl<'de, A, K: ?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, K: ?Sized> Display for OwnedKeyId<A, K>
impl<A, K: ?Sized> Display for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> From<&KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K: ?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, K: ?Sized> From<OwnedKeyId<A, K>> for String
impl<A, K: ?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, K: ?Sized> FromStr for OwnedKeyId<A, K>
impl<A, K: ?Sized> FromStr for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> Hash for OwnedKeyId<A, K>
impl<A, K: ?Sized> Hash for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> Ord for OwnedKeyId<A, K>
impl<A, K: ?Sized> Ord for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> PartialEq for OwnedKeyId<A, K>
impl<A, K: ?Sized> PartialEq for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> PartialOrd for OwnedKeyId<A, K>
impl<A, K: ?Sized> PartialOrd for OwnedKeyId<A, K>
Source§impl<A, K: ?Sized> Serialize for OwnedKeyId<A, K>
impl<A, K: ?Sized> Serialize for OwnedKeyId<A, K>
impl<A, K: ?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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.