1//! Common types for the [presence module][presence].
2//!
3//! [presence]: https://spec.matrix.org/latest/client-server-api/#presence
45use crate::{serde::StringEnum, PrivOwnedStr};
67/// A description of a user's connectivity and availability for chat.
8#[doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/src/doc/string_enum.md"))]
9#[derive(Clone, Default, PartialEq, Eq, StringEnum)]
10#[ruma_enum(rename_all = "snake_case")]
11#[non_exhaustive]
12pub enum PresenceState {
13/// Disconnected from the service.
14Offline,
1516/// Connected to the service.
17#[default]
18Online,
1920/// Connected to the service but not available for chat.
21Unavailable,
2223#[doc(hidden)]
24_Custom(PrivOwnedStr),
25}
2627impl Default for &'_ PresenceState {
28fn default() -> Self {
29&PresenceState::Online
30 }
31}