Struct ruma_federation_api::transactions::edu::PresenceUpdate
source · pub struct PresenceUpdate {
pub user_id: OwnedUserId,
pub presence: PresenceState,
pub status_msg: Option<String>,
pub last_active_ago: UInt,
pub currently_active: bool,
}
Expand description
An update to the presence of a user.
Fields§
§user_id: OwnedUserId
The user ID this presence EDU is for.
presence: PresenceState
The presence of the user.
status_msg: Option<String>
An optional description to accompany the presence.
last_active_ago: UInt
The number of milliseconds that have elapsed since the user last did something.
currently_active: bool
Whether 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,
) -> Self
pub fn new( user_id: OwnedUserId, presence: PresenceState, last_activity: UInt, ) -> Self
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 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 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<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
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
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
)