pub struct UpdateFeedRequest {
pub feed: Option<Feed>,
pub update_mask: Option<FieldMask>,
}Expand description
Update asset feed request.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- patch feeds (request)
Fields§
§feed: Option<Feed>Required. The new values of feed details. It must match an existing feed and the field name must be in the format of: projects/project_number/feeds/feed_id or folders/folder_number/feeds/feed_id or organizations/organization_number/feeds/feed_id.
update_mask: Option<FieldMask>Required. Only updates the feed fields indicated by this mask. The field mask must not be empty, and it must not contain fields that are immutable or only set by the server.
Trait Implementations§
Source§impl Clone for UpdateFeedRequest
impl Clone for UpdateFeedRequest
Source§fn clone(&self) -> UpdateFeedRequest
fn clone(&self) -> UpdateFeedRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UpdateFeedRequest
impl Debug for UpdateFeedRequest
Source§impl Default for UpdateFeedRequest
impl Default for UpdateFeedRequest
Source§fn default() -> UpdateFeedRequest
fn default() -> UpdateFeedRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFeedRequest
impl<'de> Deserialize<'de> for UpdateFeedRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for UpdateFeedRequest
impl Serialize for UpdateFeedRequest
impl RequestValue for UpdateFeedRequest
Auto Trait Implementations§
impl Freeze for UpdateFeedRequest
impl RefUnwindSafe for UpdateFeedRequest
impl Send for UpdateFeedRequest
impl Sync for UpdateFeedRequest
impl Unpin for UpdateFeedRequest
impl UnwindSafe for UpdateFeedRequest
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
Mutably borrows from an owned value. Read more