pub struct UpdateDeveloperMetadataRequest {
pub data_filters: Option<Vec<DataFilter>>,
pub developer_metadata: Option<DeveloperMetadata>,
pub fields: Option<FieldMask>,
}
Expand description
A request to update properties of developer metadata. Updates the properties of the developer metadata selected by the filters to the values provided in the DeveloperMetadata resource. Callers must specify the properties they wish to update in the fields parameter, as well as specify at least one DataFilter matching the metadata they wish to update.
This type is not used in any activity, and only used as part of another schema.
Fields§
§data_filters: Option<Vec<DataFilter>>
The filters matching the developer metadata entries to update.
developer_metadata: Option<DeveloperMetadata>
The value that all metadata matched by the data filters will be updated to.
fields: Option<FieldMask>
The fields that should be updated. At least one field must be specified. The root developerMetadata
is implied and should not be specified. A single "*"
can be used as short-hand for listing every field.
Trait Implementations§
Source§impl Clone for UpdateDeveloperMetadataRequest
impl Clone for UpdateDeveloperMetadataRequest
Source§fn clone(&self) -> UpdateDeveloperMetadataRequest
fn clone(&self) -> UpdateDeveloperMetadataRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for UpdateDeveloperMetadataRequest
impl Default for UpdateDeveloperMetadataRequest
Source§fn default() -> UpdateDeveloperMetadataRequest
fn default() -> UpdateDeveloperMetadataRequest
Source§impl<'de> Deserialize<'de> for UpdateDeveloperMetadataRequest
impl<'de> Deserialize<'de> for UpdateDeveloperMetadataRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for UpdateDeveloperMetadataRequest
Auto Trait Implementations§
impl Freeze for UpdateDeveloperMetadataRequest
impl RefUnwindSafe for UpdateDeveloperMetadataRequest
impl Send for UpdateDeveloperMetadataRequest
impl Sync for UpdateDeveloperMetadataRequest
impl Unpin for UpdateDeveloperMetadataRequest
impl UnwindSafe for UpdateDeveloperMetadataRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more