pub struct CreateFeedRequest {
pub feed: Option<Feed>,
pub feed_id: Option<String>,
}Expand description
Create 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).
- create feeds (request)
Fields§
§feed: Option<Feed>Required. The feed details. The field name must be empty and it will be generated in the format of: projects/project_number/feeds/feed_id folders/folder_number/feeds/feed_id organizations/organization_number/feeds/feed_id
feed_id: Option<String>Required. This is the client-assigned asset feed identifier and it needs to be unique under a specific parent project/folder/organization.
Trait Implementations§
Source§impl Clone for CreateFeedRequest
impl Clone for CreateFeedRequest
Source§fn clone(&self) -> CreateFeedRequest
fn clone(&self) -> CreateFeedRequest
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 CreateFeedRequest
impl Debug for CreateFeedRequest
Source§impl Default for CreateFeedRequest
impl Default for CreateFeedRequest
Source§fn default() -> CreateFeedRequest
fn default() -> CreateFeedRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFeedRequest
impl<'de> Deserialize<'de> for CreateFeedRequest
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 CreateFeedRequest
impl Serialize for CreateFeedRequest
impl RequestValue for CreateFeedRequest
Auto Trait Implementations§
impl Freeze for CreateFeedRequest
impl RefUnwindSafe for CreateFeedRequest
impl Send for CreateFeedRequest
impl Sync for CreateFeedRequest
impl Unpin for CreateFeedRequest
impl UnwindSafe for CreateFeedRequest
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