fars 0.2.0

An unofficial Rust client for the Firebase Auth REST API.
Documentation
/// The Firebase project API key.
#[derive(Clone, Debug, Hash, Eq, PartialEq)]
pub struct ApiKey {
    inner: String,
}

impl ApiKey {
    /// Creates a new API key.
    pub fn new<S>(inner: S) -> Self
    where
        S: Into<String>,
    {
        Self {
            inner: inner.into(),
        }
    }

    pub(crate) fn inner(&self) -> &str {
        &self.inner
    }
}