pub struct CreateFeedSpecification {
pub feed_type: String,
pub marketplace_ids: Vec<String>,
pub input_feed_document_id: String,
pub feed_options: Option<HashMap<String, String>>,
}Fields
feed_type: StringThe feed type.
marketplace_ids: Vec<String>A list of identifiers for marketplaces that you want the feed to be applied to.
input_feed_document_id: StringThe document identifier returned by the createFeedDocument operation. Encrypt and upload the feed document contents before calling the createFeed operation.
feed_options: Option<HashMap<String, String>>Additional options to control the feed. For feeds that use the feedOptions parameter, you can find the parameter values in the feed description in feedType values.
Implementations
Trait Implementations
sourceimpl Clone for CreateFeedSpecification
impl Clone for CreateFeedSpecification
sourcefn clone(&self) -> CreateFeedSpecification
fn clone(&self) -> CreateFeedSpecification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateFeedSpecification
impl Debug for CreateFeedSpecification
sourceimpl Default for CreateFeedSpecification
impl Default for CreateFeedSpecification
sourcefn default() -> CreateFeedSpecification
fn default() -> CreateFeedSpecification
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateFeedSpecification
impl<'de> Deserialize<'de> for CreateFeedSpecification
sourcefn 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
sourceimpl PartialEq<CreateFeedSpecification> for CreateFeedSpecification
impl PartialEq<CreateFeedSpecification> for CreateFeedSpecification
sourcefn eq(&self, other: &CreateFeedSpecification) -> bool
fn eq(&self, other: &CreateFeedSpecification) -> bool
sourceimpl Serialize for CreateFeedSpecification
impl Serialize for CreateFeedSpecification
impl StructuralPartialEq for CreateFeedSpecification
Auto Trait Implementations
impl RefUnwindSafe for CreateFeedSpecification
impl Send for CreateFeedSpecification
impl Sync for CreateFeedSpecification
impl Unpin for CreateFeedSpecification
impl UnwindSafe for CreateFeedSpecification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more