1#![allow(dead_code)]
8#![warn(missing_debug_implementations)]
9
10use std::fmt;
11
12pub mod account_validity;
13pub mod background_updates;
14pub mod experimental_features;
15pub mod register_users;
16pub mod room_membership;
17pub mod rooms;
18pub mod users;
19pub mod version;
20
21mod serde;
22
23#[doc(hidden)]
27#[derive(Clone, PartialEq, Eq, PartialOrd, Ord)]
28pub struct PrivOwnedStr(Box<str>);
29
30impl fmt::Debug for PrivOwnedStr {
31 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
32 self.0.fmt(f)
33 }
34}