Struct ruma::events::presence::PresenceEventContent
source · #[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§
source§impl PresenceEventContent
impl PresenceEventContent
sourcepub fn new(presence: PresenceState) -> PresenceEventContent
pub fn new(presence: PresenceState) -> PresenceEventContent
Creates a new PresenceEventContent
with the given state.
Trait Implementations§
source§impl Clone for PresenceEventContent
impl Clone for PresenceEventContent
source§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 moresource§impl Debug for PresenceEventContent
impl Debug for PresenceEventContent
source§impl<'de> Deserialize<'de> for PresenceEventContent
impl<'de> Deserialize<'de> for PresenceEventContent
source§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
source§impl EventContent for PresenceEventContent
impl EventContent for PresenceEventContent
source§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
.source§impl Serialize for PresenceEventContent
impl Serialize for PresenceEventContent
source§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
Auto Trait Implementations§
impl Freeze for PresenceEventContent
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
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)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)