Struct ruma_events::room::message::LocationMessageEventContent
source · #[non_exhaustive]pub struct LocationMessageEventContent {
pub body: String,
pub geo_uri: String,
pub info: Option<Box<LocationInfo>>,
pub message: Option<TextContentBlock>,
pub location: Option<LocationContent>,
pub asset: Option<AssetContent>,
pub ts: Option<MilliSecondsSinceUnixEpoch>,
}
Expand description
The payload for a location message.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.body: String
A description of the location e.g. “Big Ben, London, UK”, or some kind of content description for accessibility, e.g. “location attachment”.
geo_uri: String
A geo URI representing the location.
info: Option<Box<LocationInfo>>
Info about the location being represented.
message: Option<TextContentBlock>
Extensible-event text representation of the message.
If present, this should be preferred over the body
field.
location: Option<LocationContent>
Extensible-event location info of the message.
If present, this should be preferred over the geo_uri
field.
asset: Option<AssetContent>
Extensible-event asset this message refers to.
ts: Option<MilliSecondsSinceUnixEpoch>
Extensible-event timestamp this message refers to.
Implementations§
source§impl LocationMessageEventContent
impl LocationMessageEventContent
sourcepub fn new(body: String, geo_uri: String) -> Self
pub fn new(body: String, geo_uri: String) -> Self
Creates a new LocationMessageEventContent
with the given body and geo URI.
sourcepub fn with_asset_type(self, asset: AssetType) -> Self
pub fn with_asset_type(self, asset: AssetType) -> Self
Set the asset type of this LocationMessageEventContent
.
sourcepub fn with_ts(self, ts: MilliSecondsSinceUnixEpoch) -> Self
pub fn with_ts(self, ts: MilliSecondsSinceUnixEpoch) -> Self
Set the timestamp of this LocationMessageEventContent
.
sourcepub fn plain_text_representation(&self) -> &str
pub fn plain_text_representation(&self) -> &str
Get the plain text representation of this LocationMessageEventContent
.
sourcepub fn asset_type(&self) -> AssetType
pub fn asset_type(&self) -> AssetType
Get the asset type of this LocationMessageEventContent
.
Trait Implementations§
source§impl Clone for LocationMessageEventContent
impl Clone for LocationMessageEventContent
source§fn clone(&self) -> LocationMessageEventContent
fn clone(&self) -> LocationMessageEventContent
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for LocationMessageEventContent
impl Debug for LocationMessageEventContent
source§impl<'de> Deserialize<'de> for LocationMessageEventContent
impl<'de> Deserialize<'de> for LocationMessageEventContent
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>,
Auto Trait Implementations§
impl Freeze for LocationMessageEventContent
impl RefUnwindSafe for LocationMessageEventContent
impl Send for LocationMessageEventContent
impl Sync for LocationMessageEventContent
impl Unpin for LocationMessageEventContent
impl UnwindSafe for LocationMessageEventContent
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)