Struct gapi_grpc::google::cloud::audit::ResourceLocation[][src]

pub struct ResourceLocation {
    pub current_locations: Vec<String>,
    pub original_locations: Vec<String>,
}

Location information about a resource.

Fields

current_locations: Vec<String>

The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the ‘current_locations’ field and not the ‘original_locations’ field. For example:

"europe-west1-a"
"us-east1"
"nam3"
original_locations: Vec<String>

The locations of a resource prior to the execution of the operation. Requests that mutate the resource’s location must populate both the ‘original_locations’ as well as the ‘current_locations’ fields. For example:

"europe-west1-a"
"us-east1"
"nam3"

Trait Implementations

impl Clone for ResourceLocation[src]

impl Debug for ResourceLocation[src]

impl Default for ResourceLocation[src]

impl Message for ResourceLocation[src]

impl PartialEq<ResourceLocation> for ResourceLocation[src]

impl StructuralPartialEq for ResourceLocation[src]

Auto Trait Implementations

impl RefUnwindSafe for ResourceLocation

impl Send for ResourceLocation

impl Sync for ResourceLocation

impl Unpin for ResourceLocation

impl UnwindSafe for ResourceLocation

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]