[][src]Struct ruma_identifiers::EventId

pub struct EventId { /* fields omitted */ }

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.

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 EventId[src]

pub fn new(server_name: &ServerName) -> Self[src]

This is supported on feature="rand" only.

Attempts to generate an EventId for the given origin server with a localpart consisting of 18 random ASCII characters. This should only be used for events in the original format as used by Matrix room versions 1 and 2.

Does not currently ever fail, but may fail in the future if the homeserver cannot be parsed parsed as a valid host.

impl EventId[src]

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<&ServerName>[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 EventId[src]

pub fn as_str(&self) -> &str[src]

Creates a string slice from this EventId

pub fn as_bytes(&self) -> &[u8][src]

Creates a byte slice from this EventId

Trait Implementations

impl AsRef<str> for EventId[src]

impl Clone for EventId[src]

impl Debug for EventId[src]

impl<'de> Deserialize<'de> for EventId[src]

impl Display for EventId[src]

impl Eq for EventId[src]

impl From<EventId> for String[src]

impl Hash for EventId[src]

impl Ord for EventId[src]

impl<'_> PartialEq<&'_ str> for EventId[src]

impl PartialEq<EventId> for EventId[src]

impl PartialEq<EventId> for str[src]

impl<'_> PartialEq<EventId> for &'_ str[src]

impl PartialEq<EventId> for String[src]

impl PartialEq<String> for EventId[src]

impl PartialEq<str> for EventId[src]

impl PartialOrd<EventId> for EventId[src]

impl Serialize for EventId[src]

impl<'_> TryFrom<&'_ str> for EventId[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<String> for EventId[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for EventId

impl Send for EventId

impl Sync for EventId

impl Unpin for EventId

impl UnwindSafe for EventId

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,