Struct ruma::OwnedEventId
source · pub struct OwnedEventId { /* private fields */ }
Expand description
Owned variant of EventId
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 = 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<[u8]> for OwnedEventId
impl AsRef<[u8]> for OwnedEventId
source§impl AsRef<EventId> for OwnedEventId
impl AsRef<EventId> 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 Clone for OwnedEventId
impl Clone for OwnedEventId
source§fn clone(&self) -> OwnedEventId
fn clone(&self) -> OwnedEventId
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 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<OwnedEventId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<OwnedEventId, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for OwnedEventId
impl Display for OwnedEventId
source§impl From<&EventId> for OwnedEventId
impl From<&EventId> for OwnedEventId
source§fn from(id: &EventId) -> OwnedEventId
fn from(id: &EventId) -> OwnedEventId
Converts to this type from the input type.
source§impl From<OwnedEventId> for String
impl From<OwnedEventId> for String
source§fn from(id: OwnedEventId) -> String
fn from(id: OwnedEventId) -> String
Converts to this type from the input type.
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
source§fn cmp(&self, other: &OwnedEventId) -> Ordering
fn cmp(&self, other: &OwnedEventId) -> 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 PartialEq<&EventId> for OwnedEventId
impl PartialEq<&EventId> for OwnedEventId
source§impl PartialEq<&str> for OwnedEventId
impl PartialEq<&str> for OwnedEventId
source§impl PartialEq<Arc<EventId>> for OwnedEventId
impl PartialEq<Arc<EventId>> for OwnedEventId
source§impl PartialEq<Box<EventId>> for OwnedEventId
impl PartialEq<Box<EventId>> for OwnedEventId
source§impl PartialEq<EventId> for OwnedEventId
impl PartialEq<EventId> for OwnedEventId
source§impl PartialEq<OwnedEventId> for &EventId
impl PartialEq<OwnedEventId> for &EventId
source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
This method tests for
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
This method tests for
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
This method tests for
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
This method tests for
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 PartialEq for OwnedEventId
impl PartialEq for OwnedEventId
source§fn eq(&self, other: &OwnedEventId) -> bool
fn eq(&self, other: &OwnedEventId) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for OwnedEventId
impl PartialOrd for OwnedEventId
source§fn partial_cmp(&self, other: &OwnedEventId) -> Option<Ordering>
fn partial_cmp(&self, other: &OwnedEventId) -> 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 Serialize for OwnedEventId
impl Serialize for OwnedEventId
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 TryFrom<&str> for OwnedEventId
impl TryFrom<&str> for OwnedEventId
source§impl TryFrom<String> for OwnedEventId
impl TryFrom<String> for OwnedEventId
impl Eq 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 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
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.