[][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.

assert_eq!(
    EventId::try_from("$h29iv0s8:example.com").unwrap().to_string(),
    "$h29iv0s8:example.com"
);

Methods

impl EventId[src]

pub fn new(server_name: &str) -> Result<Self, Error>[src]

Attempts to generate an EventId for the given origin server with a localpart consisting of 18 random ASCII characters.

Fails if the given origin server name cannot be parsed as a valid host.

pub fn hostname(&self) -> &Host[src]

Returns a Host for the event ID, containing the server name (minus the port) of the originating homeserver.

The host can be either a domain name, an IPv4 address, or an IPv6 address.

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

Returns the event's opaque ID.

pub fn port(&self) -> u16[src]

Returns the port the originating homeserver can be accessed on.

Trait Implementations

impl Eq for EventId[src]

impl PartialEq<EventId> for EventId[src]

impl Clone for EventId[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for EventId[src]

impl Hash for EventId[src]

default fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Display for EventId[src]

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

type Error = Error

The type returned in the event of a conversion error.

fn try_from(event_id: &'a str) -> Result<Self, Self::Error>[src]

Attempts to create a new Matrix event ID from a string representation.

The string must include the leading $ sigil, the opaque ID, a literal colon, and a valid server name.

impl Serialize for EventId[src]

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

Auto Trait Implementations

impl Send for EventId

impl Sync for EventId

Blanket Implementations

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

type Owned = T

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

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]