Struct gapi_grpc::google::cloud::gaming::v1beta::Realm[][src]

pub struct Realm {
    pub name: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub labels: HashMap<String, String>,
    pub time_zone: String,
    pub etag: String,
    pub description: String,
}

A realm resource.

Fields

name: String

The resource name of the realm. Uses the form: projects/{project}/locations/{location}/realms/{realm}. For example, projects/my-project/locations/{location}/realms/my-realm.

create_time: Option<Timestamp>

Output only. The creation time.

update_time: Option<Timestamp>

Output only. The last-modified time.

labels: HashMap<String, String>

The labels associated with this realm. Each label is a key-value pair.

time_zone: String

Required. Time zone where all policies targeting this realm are evaluated. The value of this field must be from the IANA time zone database: https://www.iana.org/time-zones.

etag: String

ETag of the resource.

description: String

Human readable description of the realm.

Trait Implementations

impl Clone for Realm[src]

impl Debug for Realm[src]

impl Default for Realm[src]

impl Message for Realm[src]

impl PartialEq<Realm> for Realm[src]

impl StructuralPartialEq for Realm[src]

Auto Trait Implementations

impl RefUnwindSafe for Realm

impl Send for Realm

impl Sync for Realm

impl Unpin for Realm

impl UnwindSafe for Realm

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]