1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! # Firebase Types //! Implementation agnostic types for `firebase` in Rust //! //! ## Feature Flags #![doc = ::document_features::document_features!()] pub mod config; pub use config::*; /// Tests doctests in README when running `cargo test`, see: /// https://doc.rust-lang.org/rustdoc/write-documentation/documentation-tests.html #[doc = include_str!("../README.md")] #[cfg(doctest)] pub struct ReadmeDoctests;