Struct gapi_grpc::google::logging::v2::UpdateViewRequest[][src]

pub struct UpdateViewRequest {
    pub name: String,
    pub view: Option<LogView>,
    pub update_mask: Option<FieldMask>,
}

The parameters to UpdateView.

Fields

name: String

Required. The full resource name of the view to update

"projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]"

Example: "projects/my-project-id/locations/my-location/buckets/my-bucket-id/views/my-view-id".

view: Option<LogView>

Required. The updated view.

update_mask: Option<FieldMask>

Optional. Field mask that specifies the fields in view that need an update. A field will be overwritten if, and only if, it is in the update mask. name and output only fields cannot be updated.

For a detailed FieldMask definition, see https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#google.protobuf.FieldMask

Example: updateMask=filter.

Trait Implementations

impl Clone for UpdateViewRequest[src]

impl Debug for UpdateViewRequest[src]

impl Default for UpdateViewRequest[src]

impl Message for UpdateViewRequest[src]

impl PartialEq<UpdateViewRequest> for UpdateViewRequest[src]

impl StructuralPartialEq for UpdateViewRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for UpdateViewRequest

impl Send for UpdateViewRequest

impl Sync for UpdateViewRequest

impl Unpin for UpdateViewRequest

impl UnwindSafe for UpdateViewRequest

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]