Struct ruma::OwnedKeyId
source · pub struct OwnedKeyId<A, K>{ /* 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, K> AsRef<[u8]> for OwnedKeyId<A, K>
impl<A, K> AsRef<[u8]> for OwnedKeyId<A, K>
source§impl<A, K> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K> AsRef<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A, K> AsRef<str> for OwnedKeyId<A, K>
impl<A, K> AsRef<str> for OwnedKeyId<A, K>
source§impl<A, K> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K> Borrow<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A, K> Clone for OwnedKeyId<A, K>
impl<A, K> Clone for OwnedKeyId<A, K>
source§fn clone(&self) -> OwnedKeyId<A, K>
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<A, K> Debug for OwnedKeyId<A, K>
impl<A, K> Debug for OwnedKeyId<A, K>
source§impl<A, K> Deref for OwnedKeyId<A, K>
impl<A, K> Deref for OwnedKeyId<A, K>
source§impl<'de, A, K> Deserialize<'de> for OwnedKeyId<A, K>
impl<'de, A, K> Deserialize<'de> for OwnedKeyId<A, K>
source§fn deserialize<D>(
deserializer: D,
) -> Result<OwnedKeyId<A, K>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
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>
impl<A, K> Display for OwnedKeyId<A, K>
source§impl<A, K> From<&KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K> 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> From<OwnedKeyId<A, K>> for String
impl<A, K> 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> FromStr for OwnedKeyId<A, K>
impl<A, K> FromStr for OwnedKeyId<A, K>
source§impl<A, K> Hash for OwnedKeyId<A, K>
impl<A, K> Hash for OwnedKeyId<A, K>
source§impl<A, K> Ord for OwnedKeyId<A, K>
impl<A, K> Ord for OwnedKeyId<A, K>
source§fn cmp(&self, other: &OwnedKeyId<A, K>) -> Ordering
fn cmp(&self, other: &OwnedKeyId<A, K>) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl<A, K> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K> PartialEq<&KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<&str> for OwnedKeyId<A, K>
impl<A, K> PartialEq<&str> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A, K> PartialEq<Arc<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
impl<A, K> PartialEq<Box<KeyId<A, K>>> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<KeyId<A, K>> for OwnedKeyId<A, K>
impl<A, K> PartialEq<KeyId<A, K>> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<OwnedKeyId<A, K>> for &KeyId<A, K>
impl<A, K> 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, K> PartialEq<OwnedKeyId<A, K>> for &str
impl<A, K> 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, K> PartialEq<OwnedKeyId<A, K>> for KeyId<A, K>
impl<A, K> 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, K> PartialEq<OwnedKeyId<A, K>> for str
impl<A, K> 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, K> PartialEq<String> for OwnedKeyId<A, K>
impl<A, K> PartialEq<String> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq<str> for OwnedKeyId<A, K>
impl<A, K> PartialEq<str> for OwnedKeyId<A, K>
source§impl<A, K> PartialEq for OwnedKeyId<A, K>
impl<A, K> PartialEq for OwnedKeyId<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, K> PartialOrd for OwnedKeyId<A, K>
impl<A, K> PartialOrd for OwnedKeyId<A, K>
source§fn partial_cmp(&self, other: &OwnedKeyId<A, K>) -> Option<Ordering>
fn partial_cmp(&self, other: &OwnedKeyId<A, K>) -> Option<Ordering>
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, K> Serialize for OwnedKeyId<A, K>
impl<A, K> Serialize for OwnedKeyId<A, K>
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
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>
impl<A, K> TryFrom<&str> for OwnedKeyId<A, K>
source§impl<A, K> TryFrom<String> for OwnedKeyId<A, K>
impl<A, K> TryFrom<String> for OwnedKeyId<A, K>
impl<A, K> 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.