fars 0.2.0

An unofficial Rust client for the Firebase Auth REST API.
Documentation
1
2
3
4
5
6
//! Result types in this crate.

/// The result type for APIs.
///
/// Please handle error case by [`crate::Error`].
pub type Result<T> = std::result::Result<T, crate::Error>;