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 Server-Server API][federation-api].
4//! These types are used by server code.
5//!
6//! [federation-api]: https://spec.matrix.org/latest/server-server-api/
78#![warn(missing_docs)]
9#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1011use std::fmt;
1213mod serde;
1415pub mod authenticated_media;
16pub mod authentication;
17pub mod authorization;
18pub mod backfill;
19pub mod device;
20pub mod directory;
21pub mod discovery;
22pub mod event;
23pub mod keys;
24pub mod knock;
25pub mod membership;
26pub mod openid;
27pub mod query;
28pub mod room;
29pub mod space;
30pub mod thirdparty;
31pub mod transactions;
3233// Wrapper around `Box<str>` that cannot be used in a meaningful way outside of
34// this crate. Used for string enums because their `_Custom` variant can't be
35// truly private (only `#[doc(hidden)]`).
36#[doc(hidden)]
37#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
38pub struct PrivOwnedStr(Box<str>);
3940impl fmt::Debug for PrivOwnedStr {
41fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
42self.0.fmt(f)
43 }
44}