[−][src]Struct ruma_identifiers::event_id::EventId
A Matrix event ID.
An EventId
is generated randomly or converted from a string slice, and can be converted back
into a string as needed.
It is discouraged to use this type directly – instead use one of the aliases (EventId
and
EventIdRef
) in the crate root.
Room versions
Matrix specifies multiple room versions and the
format of event identifiers differ between them. The original format used by room versions 1
and 2 uses a short pseudorandom "localpart" followed by the hostname and port of the
originating homeserver. Later room versions change event identifiers to be a hash of the event
encoded with Base64. Some of the methods provided by EventId
are only relevant to the
original event format.
// Original format assert_eq!( EventId::try_from("$h29iv0s8:example.com").unwrap().as_ref(), "$h29iv0s8:example.com" ); // Room version 3 format assert_eq!( EventId::try_from("$acR1l0raoZnm60CBwAVgqbZqoO/mYU81xysh1u7XcJk").unwrap().as_ref(), "$acR1l0raoZnm60CBwAVgqbZqoO/mYU81xysh1u7XcJk" ); // Room version 4 format assert_eq!( EventId::try_from("$Rqnc-F-dvnEYJTyHq_iKxU2bZ1CI92-kuZq3a5lr5Zg").unwrap().as_ref(), "$Rqnc-F-dvnEYJTyHq_iKxU2bZ1CI92-kuZq3a5lr5Zg" );
Implementations
impl<T> EventId<T> where
T: AsRef<str>,
[src]
T: AsRef<str>,
pub fn as_ref(&self) -> EventId<&str>
[src]
Creates a reference to this EventId
.
pub fn localpart(&self) -> &str
[src]
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.
pub fn server_name(&self) -> Option<ServerNameRef>
[src]
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.
impl<T: AsRef<str>> EventId<T>
[src]
Trait Implementations
impl<T: AsRef<str>> AsRef<str> for EventId<T>
[src]
impl<T: Clone> Clone for EventId<T>
[src]
impl<T: Copy> Copy for EventId<T>
[src]
impl<T: Debug> Debug for EventId<T>
[src]
impl<'de> Deserialize<'de> for EventId<Box<str>>
[src]
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl<T: Display> Display for EventId<T>
[src]
impl<T: Eq> Eq for EventId<T>
[src]
impl<'a> From<&'a EventId<Box<str>>> for EventId<&'a str>
[src]
impl From<EventId<Box<str>>> for String
[src]
impl<T: Hash> Hash for EventId<T>
[src]
fn hash<H: Hasher>(&self, state: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<T: Ord> Ord for EventId<T>
[src]
fn cmp(&self, other: &Self) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl<'_, T: AsRef<str>> PartialEq<&'_ str> for EventId<T>
[src]
impl<T: PartialEq> PartialEq<EventId<T>> for EventId<T>
[src]
impl<'_, T: AsRef<str>> PartialEq<EventId<T>> for &'_ str
[src]
impl<T: AsRef<str>> PartialEq<EventId<T>> for String
[src]
impl<T: AsRef<str>> PartialEq<String> for EventId<T>
[src]
impl<T: PartialOrd> PartialOrd<EventId<T>> for EventId<T>
[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
impl<T: AsRef<str>> Serialize for EventId<T>
[src]
impl<'_> TryFrom<&'_ str> for EventId<Box<str>>
[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(s: &str) -> Result<Self, Self::Error>
[src]
impl<'a> TryFrom<&'a str> for EventId<&'a str>
[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(s: &'a str) -> Result<Self, Self::Error>
[src]
impl TryFrom<String> for EventId<Box<str>>
[src]
Auto Trait Implementations
impl<T> RefUnwindSafe for EventId<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
impl<T> Send for EventId<T> where
T: Send,
T: Send,
impl<T> Sync for EventId<T> where
T: Sync,
T: Sync,
impl<T> Unpin for EventId<T> where
T: Unpin,
T: Unpin,
impl<T> UnwindSafe for EventId<T> where
T: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,