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 Identity Service API][identity-api].
4//! These types can be shared by client and identity service code.
5//!
6//! [identity-api]: https://spec.matrix.org/latest/identity-service-api/
78#![warn(missing_docs)]
910use std::fmt;
1112pub mod association;
13pub mod authentication;
14pub mod discovery;
15pub mod invitation;
16pub mod keys;
17pub mod lookup;
18pub mod tos;
1920// Wrapper around `Box<str>` that cannot be used in a meaningful way outside of
21// this crate. Used for string enums because their `_Custom` variant can't be
22// truly private (only `#[doc(hidden)]`).
23#[doc(hidden)]
24#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
25pub struct PrivOwnedStr(Box<str>);
2627impl fmt::Debug for PrivOwnedStr {
28fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
29self.0.fmt(f)
30 }
31}