Struct ruma_events::presence::PresenceEventContent
source · 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§
§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) -> Self
pub fn new(presence: PresenceState) -> Self
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<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 PresenceEventContent
impl EventContent for PresenceEventContent
source§impl Serialize for PresenceEventContent
impl Serialize for PresenceEventContent
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)