Struct google_monitoring3::BasicAuthentication[][src]

pub struct BasicAuthentication {
    pub username: Option<String>,
    pub password: Option<String>,
}

A type of authentication to perform against the specified resource or URL that uses username and password. Currently, only Basic authentication is supported in Uptime Monitoring.

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

Fields

The username to authenticate.

The password to authenticate.

Trait Implementations

impl Default for BasicAuthentication
[src]

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

impl Clone for BasicAuthentication
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BasicAuthentication
[src]

Formats the value using the given formatter. Read more

impl Part for BasicAuthentication
[src]

Auto Trait Implementations