[][src]Struct astrolab_smart_coffee_types::accesspoint::update_ad::UpdateAdBody

pub struct UpdateAdBody {
    pub id: String,
    pub titles: Option<Vec<UpdateAdTitleBody>>,
    pub descriptions: Option<Vec<UpdateDescriptionBody>>,
    pub url: Option<String>,
    pub is_published: Option<bool>,
    pub start_date: Option<DateTime<Utc>>,
    pub end_date: Option<DateTime<Utc>>,
    pub pictures: Option<Vec<UpdateAdPictureBody>>,
}

Fields

id: Stringtitles: Option<Vec<UpdateAdTitleBody>>descriptions: Option<Vec<UpdateDescriptionBody>>url: Option<String>is_published: Option<bool>start_date: Option<DateTime<Utc>>end_date: Option<DateTime<Utc>>pictures: Option<Vec<UpdateAdPictureBody>>

Trait Implementations

impl Clone for UpdateAdBody[src]

impl Debug for UpdateAdBody[src]

impl<'de> Deserialize<'de> for UpdateAdBody[src]

impl Serialize for UpdateAdBody[src]

impl Validate for UpdateAdBody[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,