[][src]Struct google_firebasehosting1_beta1::ActingUser

pub struct ActingUser {
    pub image_url: Option<String>,
    pub email: Option<String>,
}

Contains metadata about the user who performed an action, such as creating a release or finalizing a version.

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

Fields

image_url: Option<String>

A profile image URL for the user. May not be present if the user has changed their email address or deleted their account.

email: Option<String>

The email address of the user when the user performed the action.

Trait Implementations

impl Clone for ActingUser[src]

impl Debug for ActingUser[src]

impl Default for ActingUser[src]

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

impl Part for ActingUser[src]

impl Serialize for ActingUser[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