Struct matrix_sdk_base::ruma::events::presence::PresenceEventContent
#[non_exhaustive]pub struct PresenceEventContent {
pub avatar_url: Option<OwnedMxcUri>,
pub currently_active: Option<bool>,
pub displayname: Option<String>,
pub last_active_ago: Option<UInt>,
pub presence: PresenceState,
pub status_msg: Option<String>,
}
Expand description
Informs the room of members presence.
This is the only type a PresenceEvent
can contain as its content
field.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.avatar_url: Option<OwnedMxcUri>
The current avatar URL for this user.
If you activate the compat-empty-string-null
feature, this field being an empty string in
JSON will result in None
here during deserialization.
currently_active: Option<bool>
Whether or not the user is currently active.
displayname: Option<String>
The current display name for this user.
last_active_ago: Option<UInt>
The last time since this user performed some action, in milliseconds.
presence: PresenceState
The presence state for this user.
status_msg: Option<String>
An optional description to accompany the presence.
Implementations§
§impl PresenceEventContent
impl PresenceEventContent
pub fn new(presence: PresenceState) -> PresenceEventContent
pub fn new(presence: PresenceState) -> PresenceEventContent
Creates a new PresenceEventContent
with the given state.
Trait Implementations§
§impl Clone for PresenceEventContent
impl Clone for PresenceEventContent
§fn clone(&self) -> PresenceEventContent
fn clone(&self) -> PresenceEventContent
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 more§impl Debug for PresenceEventContent
impl Debug for PresenceEventContent
§impl<'de> Deserialize<'de> for PresenceEventContent
impl<'de> Deserialize<'de> for PresenceEventContent
§fn deserialize<__D>(
__deserializer: __D
) -> Result<PresenceEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<PresenceEventContent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl EventContent for PresenceEventContent
impl EventContent for PresenceEventContent
§fn event_type(&self) -> <PresenceEventContent as EventContent>::EventType
fn event_type(&self) -> <PresenceEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.§impl Serialize for PresenceEventContent
impl Serialize for PresenceEventContent
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
§impl StaticEventContent for PresenceEventContent
impl StaticEventContent for PresenceEventContent
Auto Trait Implementations§
impl RefUnwindSafe for PresenceEventContent
impl Send for PresenceEventContent
impl Sync for PresenceEventContent
impl Unpin for PresenceEventContent
impl UnwindSafe for PresenceEventContent
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
Mutably borrows from an owned value. Read more