ruma_client_api/
lib.rs

1#![doc(html_favicon_url = "https://ruma.dev/favicon.ico")]
2#![doc(html_logo_url = "https://ruma.dev/images/logo.png")]
3//! (De)serializable types for the [Matrix Client-Server API][client-api].
4//! These types can be shared by client and server code.
5//!
6//! [client-api]: https://spec.matrix.org/latest/client-server-api/
7
8#![cfg(any(feature = "client", feature = "server"))]
9#![cfg_attr(docsrs, feature(doc_auto_cfg))]
10#![warn(missing_docs)]
11
12pub mod account;
13pub mod alias;
14pub mod appservice;
15pub mod authenticated_media;
16pub mod backup;
17pub mod config;
18pub mod context;
19#[cfg(feature = "unstable-msc3814")]
20pub mod dehydrated_device;
21#[cfg(feature = "unstable-msc4140")]
22pub mod delayed_events;
23pub mod device;
24pub mod directory;
25pub mod discovery;
26pub mod error;
27pub mod filter;
28pub mod http_headers;
29pub mod keys;
30pub mod knock;
31pub mod media;
32pub mod membership;
33pub mod message;
34pub mod peeking;
35pub mod presence;
36pub mod profile;
37pub mod push;
38pub mod read_marker;
39pub mod receipt;
40pub mod redact;
41pub mod relations;
42#[cfg(feature = "unstable-msc4108")]
43pub mod rendezvous;
44pub mod room;
45pub mod search;
46pub mod server;
47pub mod session;
48pub mod space;
49pub mod state;
50pub mod sync;
51pub mod tag;
52pub mod thirdparty;
53pub mod threads;
54pub mod to_device;
55pub mod typing;
56pub mod uiaa;
57pub mod user_directory;
58pub mod voip;
59
60use std::fmt;
61
62pub use error::Error;
63
64// Wrapper around `Box<str>` that cannot be used in a meaningful way outside of
65// this crate. Used for string enums because their `_Custom` variant can't be
66// truly private (only `#[doc(hidden)]`).
67#[doc(hidden)]
68#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
69pub struct PrivOwnedStr(Box<str>);
70
71impl fmt::Debug for PrivOwnedStr {
72    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
73        self.0.fmt(f)
74    }
75}