Struct gapi_grpc::google::cloud::domains::v1alpha2::ConfigureContactSettingsRequest[][src]

pub struct ConfigureContactSettingsRequest {
    pub registration: String,
    pub contact_settings: Option<ContactSettings>,
    pub update_mask: Option<FieldMask>,
    pub contact_notices: Vec<i32>,
    pub validate_only: bool,
}
[]

Request for the ConfigureContactSettings method.

Fields

registration: String
[]

Required. The name of the Registration whose contact settings are being updated, in the format projects/*/locations/*/registrations/*.

contact_settings: Option<ContactSettings>
[]

Fields of the ContactSettings to update.

update_mask: Option<FieldMask>
[]

Required. The field mask describing which fields to update as a comma-separated list. For example, if only the registrant contact is being updated, the update_mask would be "registrant_contact".

contact_notices: Vec<i32>
[]

The list of contact notices that the caller acknowledges. The notices required here depend on the values specified in contact_settings.

validate_only: bool
[]

Validate the request without actually updating the contact settings.

Implementations

impl ConfigureContactSettingsRequest[src][]

pub fn contact_notices(
    &self
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<ContactNotice>>
[src][]

Returns an iterator which yields the valid enum values contained in contact_notices.

pub fn push_contact_notices(&mut self, value: ContactNotice)[src][]

Appends the provided enum value to contact_notices.

Trait Implementations

impl Clone for ConfigureContactSettingsRequest[src][+]

impl Debug for ConfigureContactSettingsRequest[src][+]

impl Default for ConfigureContactSettingsRequest[src][+]

impl Message for ConfigureContactSettingsRequest[src][+]

impl PartialEq<ConfigureContactSettingsRequest> for ConfigureContactSettingsRequest[src][+]

impl StructuralPartialEq for ConfigureContactSettingsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ConfigureContactSettingsRequest

impl Send for ConfigureContactSettingsRequest

impl Sync for ConfigureContactSettingsRequest

impl Unpin for ConfigureContactSettingsRequest

impl UnwindSafe for ConfigureContactSettingsRequest

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][+]