#[non_exhaustive]pub struct PresenceUpdate {
    pub user_id: OwnedUserId,
    pub presence: PresenceState,
    pub status_msg: Option<String>,
    pub last_active_ago: UInt,
    pub currently_active: bool,
}Available on crate feature 
api and (crate features federation-api-c or federation-api-s) only.Expand description
An update to the presence of a user.
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.user_id: OwnedUserIdThe user ID this presence EDU is for.
presence: PresenceStateThe presence of the user.
status_msg: Option<String>An optional description to accompany the presence.
last_active_ago: UIntThe number of milliseconds that have elapsed since the user last did something.
currently_active: boolWhether or not the user is currently active.
Defaults to false.
Implementations§
Source§impl PresenceUpdate
 
impl PresenceUpdate
Sourcepub fn new(
    user_id: OwnedUserId,
    presence: PresenceState,
    last_activity: UInt,
) -> PresenceUpdate
 
pub fn new( user_id: OwnedUserId, presence: PresenceState, last_activity: UInt, ) -> PresenceUpdate
Creates a new PresenceUpdate with the given user_id, presence and last_activity.
Trait Implementations§
Source§impl Clone for PresenceUpdate
 
impl Clone for PresenceUpdate
Source§fn clone(&self) -> PresenceUpdate
 
fn clone(&self) -> PresenceUpdate
Returns a duplicate 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 PresenceUpdate
 
impl Debug for PresenceUpdate
Source§impl<'de> Deserialize<'de> for PresenceUpdate
 
impl<'de> Deserialize<'de> for PresenceUpdate
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<PresenceUpdate, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<PresenceUpdate, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for PresenceUpdate
 
impl Serialize for PresenceUpdate
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 PresenceUpdate
impl RefUnwindSafe for PresenceUpdate
impl Send for PresenceUpdate
impl Sync for PresenceUpdate
impl Unpin for PresenceUpdate
impl UnwindSafe for PresenceUpdate
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