Struct google_partners2::PublicProfile[][src]

pub struct PublicProfile {
    pub url: Option<String>,
    pub profile_image: Option<String>,
    pub display_image_url: Option<String>,
    pub display_name: Option<String>,
    pub id: Option<String>,
}

Basic information from a public profile.

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

Fields

The URL of the public profile.

The URL to the main profile image of the public profile.

The URL to the main display image of the public profile. Being deprecated.

The display name of the public profile.

The ID which can be used to retrieve more details about the public profile.

Trait Implementations

impl Default for PublicProfile
[src]

Returns the "default value" for a type. Read more

impl Clone for PublicProfile
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PublicProfile
[src]

Formats the value using the given formatter. Read more

impl Part for PublicProfile
[src]

Auto Trait Implementations