Struct mailchimp_api::types::RssOpts
source · pub struct RssOpts {
pub constrain_rss_img: bool,
pub feed_url: String,
pub frequency: Option<Frequency>,
pub last_sent: Option<DateTime<Utc>>,
pub schedule: Option<Schedule>,
}Expand description
RSS options for a campaign.
Fields
constrain_rss_img: boolRSS options for a campaign.
feed_url: StringRSS options for a campaign.
frequency: Option<Frequency>RSS options for a campaign.
last_sent: Option<DateTime<Utc>>RSS options for a campaign.
schedule: Option<Schedule>RSS options for a campaign.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for RssOpts
impl<'de> Deserialize<'de> for RssOpts
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 JsonSchema for RssOpts
impl JsonSchema for RssOpts
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for RssOpts
Auto Trait Implementations
impl RefUnwindSafe for RssOpts
impl Send for RssOpts
impl Sync for RssOpts
impl Unpin for RssOpts
impl UnwindSafe for RssOpts
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