Struct ruma_events::call::invite::InviteEvent [] [src]

pub struct InviteEvent {
    pub content: InviteEventContent,
    pub event_id: EventId,
    pub event_type: EventType,
    pub room_id: RoomId,
    pub unsigned: Option<Value>,
    pub user_id: UserId,
}

This event is sent by the caller when they wish to establish a call.

Fields

The event's content.

The unique identifier for the event.

The type of the event.

The unique identifier for the room associated with this event.

Additional key-value pairs not signed by the homeserver.

The unique identifier for the user associated with this event.

Trait Implementations

impl Clone for InviteEvent
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InviteEvent
[src]

Formats the value using the given formatter.

impl Event for InviteEvent
[src]

The event-type-specific payload this event carries.

The event's content.

The type of the event.

Extra top-level key-value pairs specific to this event type, but that are not under the content field. Read more

impl RoomEvent for InviteEvent
[src]

The unique identifier for the event.

The unique identifier for the room associated with this event.

Additional key-value pairs not signed by the homeserver.

The unique identifier for the user associated with this event.