Struct ruma_common::events::location::LocationEventContent
source · pub struct LocationEventContent {
pub message: MessageContent,
pub location: LocationContent,
pub asset: AssetContent,
pub ts: Option<MilliSecondsSinceUnixEpoch>,
pub relates_to: Option<Relation<LocationEventContentWithoutRelation>>,
}Available on crate features
events and unstable-msc3488 only.Expand description
Fields§
§message: MessageContentThe text representation of the message.
location: LocationContentThe location info of the message.
asset: AssetContentThe asset this message refers to.
ts: Option<MilliSecondsSinceUnixEpoch>The timestamp this message refers to.
relates_to: Option<Relation<LocationEventContentWithoutRelation>>Information about related messages.
Implementations§
source§impl LocationEventContent
impl LocationEventContent
sourcepub fn plain(message: impl Into<String>, location: LocationContent) -> Self
pub fn plain(message: impl Into<String>, location: LocationContent) -> Self
Creates a new LocationEventContent with the given plain text representation and location.
sourcepub fn with_message(message: MessageContent, location: LocationContent) -> Self
pub fn with_message(message: MessageContent, location: LocationContent) -> Self
Creates a new LocationEventContent with the given text representation and location.
Trait Implementations§
source§impl Clone for LocationEventContent
impl Clone for LocationEventContent
source§fn clone(&self) -> LocationEventContent
fn clone(&self) -> LocationEventContent
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 LocationEventContent
impl Debug for LocationEventContent
source§impl<'de> Deserialize<'de> for LocationEventContent
impl<'de> Deserialize<'de> for LocationEventContent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for LocationEventContent
impl EventContent for LocationEventContent
§type EventType = MessageLikeEventType
type EventType = MessageLikeEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message.source§impl From<LocationEventContent> for AnyMessageLikeEventContent
impl From<LocationEventContent> for AnyMessageLikeEventContent
source§fn from(c: LocationEventContent) -> Self
fn from(c: LocationEventContent) -> Self
Converts to this type from the input type.
source§impl From<LocationEventContent> for LocationEventContentWithoutRelation
impl From<LocationEventContent> for LocationEventContentWithoutRelation
source§fn from(c: LocationEventContent) -> Self
fn from(c: LocationEventContent) -> Self
Converts to this type from the input type.
source§impl RedactContent for LocationEventContent
impl RedactContent for LocationEventContent
§type Redacted = RedactedLocationEventContent
type Redacted = RedactedLocationEventContent
The redacted form of the event’s content.
source§fn redact(self, version: &RoomVersionId) -> RedactedLocationEventContent
fn redact(self, version: &RoomVersionId) -> RedactedLocationEventContent
Transform
self into a redacted form (removing most or all fields) according to the spec. Read more