1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! types and utilities for network users //! //! Users can be humans or bots. mod id; #[doc(inline)] pub use id::UserId; pub mod credentials; #[doc(inline)] pub use credentials::{Basic, Bearer, ProxyCredential, RawToken}; pub mod authority; pub mod layer;