pub struct OwnedEventId { /* private fields */ }Expand description
Owned variant of EventId
§Inner representation
By default, this type uses a Box<str> internally. The inner representation can be selected at
compile time by using one of the following supported values:
Arc– Use anArc<str>.
The selected value can be set by using the ruma_identifiers_storage compile-time cfg setting.
This setting can be configured using the RUSTFLAGS environment variable at build time, like this:
RUSTFLAGS="--cfg ruma_identifiers_storage=\"{value}\""Or in .cargo/config.toml:
# General setting for all targets, overridden by per-target `rustflags` setting if set.
[build]
rustflags = ["--cfg", "ruma_identifiers_storage=\"{value}\""]
# Per-target setting.
[target.<triple/cfg>]
rustflags = ["--cfg", "ruma_identifiers_storage=\"{value}\""]This setting can also be configured using the RUMA_IDENTIFIERS_STORAGE environment variable at
compile time, which has the benefit of not requiring to re-compile the whole dependency chain
when the value is changed, like this:
RUMA_IDENTIFIERS_STORAGE="{value}"Implementations§
Source§impl OwnedEventId
impl OwnedEventId
Sourcepub fn zeroize(self)
pub fn zeroize(self)
Securely zero memory (aka zeroize) of OwnedEventId.
This method zeroizes this type by writing zeros in its
memory location before freeing it. It internally uses
the zeroize crate. Note that this type
doesn’t implement the zeroize::Zeroize trait because the
Zeroize::zeroize method takes a &mut self, which means
we could put this type into an inconsistent state if it is
used after calling that method. Instead, this method takes
ownership of the type, ensuring it’s impossible to misuse
it.
§Implementation details
If the ruma_identifiers_storage configuration is
set to Arc, this type will be zeroized if and only if
Arc::get_mut returns Some reference, i.e. if there is no
other Arc or Weak pointers to this same location.
Methods from Deref<Target = EventId>§
Sourcepub fn localpart(&self) -> &str
pub fn localpart(&self) -> &str
Returns the event’s unique ID.
For the original event format as used by Matrix room versions 1 and 2, this is the
“localpart” that precedes the homeserver. For later formats, this is the entire ID without
the leading $ sigil.
Sourcepub fn server_name(&self) -> Option<&ServerName>
pub fn server_name(&self) -> Option<&ServerName>
Returns the server name of the event ID.
Only applicable to events in the original format as used by Matrix room versions 1 and 2.
Trait Implementations§
Source§impl AsRef<EventId> for OwnedEventId
impl AsRef<EventId> for OwnedEventId
Source§impl AsRef<[u8]> for OwnedEventId
impl AsRef<[u8]> for OwnedEventId
Source§impl AsRef<str> for OwnedEventId
impl AsRef<str> for OwnedEventId
Source§impl Borrow<EventId> for OwnedEventId
impl Borrow<EventId> for OwnedEventId
Source§impl Borrow<str> for OwnedEventId
impl Borrow<str> for OwnedEventId
Source§impl Clone for OwnedEventId
impl Clone for OwnedEventId
Source§impl Debug for OwnedEventId
impl Debug for OwnedEventId
Source§impl Deref for OwnedEventId
impl Deref for OwnedEventId
Source§impl<'de> Deserialize<'de> for OwnedEventId
impl<'de> Deserialize<'de> for OwnedEventId
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>,
Source§impl Display for OwnedEventId
impl Display for OwnedEventId
impl Eq for OwnedEventId
Source§impl From<&EventId> for OwnedEventId
impl From<&EventId> for OwnedEventId
Source§impl From<OwnedEventId> for Box<str>
impl From<OwnedEventId> for Box<str>
Source§fn from(id: OwnedEventId) -> Self
fn from(id: OwnedEventId) -> Self
Source§impl From<OwnedEventId> for String
impl From<OwnedEventId> for String
Source§fn from(id: OwnedEventId) -> Self
fn from(id: OwnedEventId) -> Self
Source§impl FromStr for OwnedEventId
impl FromStr for OwnedEventId
Source§impl Hash for OwnedEventId
impl Hash for OwnedEventId
Source§impl Ord for OwnedEventId
impl Ord for OwnedEventId
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialEq for OwnedEventId
impl PartialEq for OwnedEventId
Source§impl PartialEq<&EventId> for OwnedEventId
impl PartialEq<&EventId> for OwnedEventId
Source§impl PartialEq<&str> for OwnedEventId
impl PartialEq<&str> for OwnedEventId
Source§impl<'a> PartialEq<Cow<'a, str>> for OwnedEventId
impl<'a> PartialEq<Cow<'a, str>> for OwnedEventId
Source§impl PartialEq<EventId> for OwnedEventId
impl PartialEq<EventId> for OwnedEventId
Source§impl PartialEq<OwnedEventId> for str
impl PartialEq<OwnedEventId> for str
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl PartialEq<OwnedEventId> for &str
impl PartialEq<OwnedEventId> for &str
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl PartialEq<OwnedEventId> for String
impl PartialEq<OwnedEventId> for String
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl<'a> PartialEq<OwnedEventId> for Cow<'a, str>
impl<'a> PartialEq<OwnedEventId> for Cow<'a, str>
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl PartialEq<OwnedEventId> for EventId
impl PartialEq<OwnedEventId> for EventId
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl PartialEq<OwnedEventId> for &EventId
impl PartialEq<OwnedEventId> for &EventId
Source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
self and other values to be equal, and is used by ==.Source§impl PartialEq<String> for OwnedEventId
impl PartialEq<String> for OwnedEventId
Source§impl PartialEq<str> for OwnedEventId
impl PartialEq<str> for OwnedEventId
Source§impl PartialOrd for OwnedEventId
impl PartialOrd for OwnedEventId
Source§impl Serialize for OwnedEventId
impl Serialize for OwnedEventId
Source§impl TryFrom<&str> for OwnedEventId
impl TryFrom<&str> for OwnedEventId
Auto Trait Implementations§
impl Freeze for OwnedEventId
impl RefUnwindSafe for OwnedEventId
impl Send for OwnedEventId
impl Sync for OwnedEventId
impl Unpin for OwnedEventId
impl UnsafeUnpin for OwnedEventId
impl UnwindSafe for OwnedEventId
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> DropFlavorWrapper<T> for T
impl<T> DropFlavorWrapper<T> for T
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
key and return true if they are equal.