pub struct FirebaseConfig {
pub api_key: String,
pub auth_domain: String,
pub project_id: String,
pub storage_bucket: String,
pub messaging_sender_id: String,
pub app_id: String,
pub measurement_id: String,
pub database_url: String,
}
Fields§
§api_key: String
§auth_domain: String
§project_id: String
§storage_bucket: String
§messaging_sender_id: String
§app_id: String
§measurement_id: String
§database_url: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FirebaseConfig
impl<'de> Deserialize<'de> for FirebaseConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for FirebaseConfig
impl RefUnwindSafe for FirebaseConfig
impl Send for FirebaseConfig
impl Sync for FirebaseConfig
impl Unpin for FirebaseConfig
impl UnwindSafe for FirebaseConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more