[][src]Struct google_firebase1_beta1::ProjectInfo

pub struct ProjectInfo {
    pub project: Option<String>,
    pub display_name: Option<String>,
    pub location_id: Option<String>,
}

A reference to a Google Cloud Platform (GCP) Project.

This type is not used in any activity, and only used as part of another schema.

Fields

project: Option<String>

The resource name of the GCP Project to which Firebase resources can be added, in the format:
projects/PROJECT_NUMBER

display_name: Option<String>

The user-assigned display name of the GCP Project, for example: My App

location_id: Option<String>

The ID of the project's default GCP resource location. The location is one of the available GCP resource locations.

Not all projects will have this field populated. If it is not populated, it means that the project does not yet have a default GCP resource location. To set your project's default GCP resource location, call FinalizeDefaultLocation after you add Firebase resources to your project.

Trait Implementations

impl Clone for ProjectInfo[src]

impl Debug for ProjectInfo[src]

impl Default for ProjectInfo[src]

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

impl Part for ProjectInfo[src]

impl Serialize for ProjectInfo[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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> Typeable for T where
    T: Any