[][src]Struct google_firebase1_beta1::FirebaseProject

pub struct FirebaseProject {
    pub project_id: Option<String>,
    pub display_name: Option<String>,
    pub name: Option<String>,
    pub resources: Option<DefaultResources>,
    pub project_number: Option<String>,
}

A FirebaseProject is the top-level Firebase entity. It is the container for Firebase Apps, Firebase Hosting sites, storage systems (Firebase Realtime Database, Cloud Firestore, Cloud Storage buckets) and other Firebase and Google Cloud Platform (GCP) resources.

You can create a new FirebaseProject in the Firebase console, or you can add Firebase resources to an existing GCP Project by calling AddFirebase.

A FirebaseProject is actually also a GCP Project, so a FirebaseProject uses underlying GCP identifiers (most importantly, projectId) as its own for easy interop with GCP APIs.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

project_id: Option<String>

Immutable. The globally unique, user-assigned ID of the Project.

display_name: Option<String>

The user-assigned display name of the Project.

name: Option<String>

The fully qualified resource name of the Project, in the format:
projects/projectId

resources: Option<DefaultResources>

The default Firebase resources associated with the Project.

project_number: Option<String>

The globally unique, Google-assigned identifier of the Project.

Trait Implementations

impl ResponseResult for FirebaseProject[src]

impl RequestValue for FirebaseProject[src]

impl Default for FirebaseProject[src]

impl Clone for FirebaseProject[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for FirebaseProject[src]

impl Serialize for FirebaseProject[src]

impl<'de> Deserialize<'de> for FirebaseProject[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]