[][src]Struct ulule::search::Project

pub struct Project {
    pub absolute_url: String,
    pub amount_raised: u64,
    pub country: String,
    pub currency: String,
    pub date_end: Option<String>,
    pub date_start: Option<String>,
    pub finished: bool,
    pub goal: u64,
    pub id: u64,
    pub lang: String,
    pub name: I18n,
    pub nb_products_sold: u64,
    pub slug: String,
    pub subtitle: I18n,
    pub kind: String,
    pub main_image: Option<Image>,
    pub main_tag: Option<Tag>,
    pub owner: Option<User>,
}

Fields

absolute_url: Stringamount_raised: u64country: Stringcurrency: Stringdate_end: Option<String>date_start: Option<String>finished: boolgoal: u64id: u64lang: Stringname: I18nnb_products_sold: u64slug: Stringsubtitle: I18nkind: Stringmain_image: Option<Image>main_tag: Option<Tag>owner: Option<User>

Trait Implementations

impl Debug for Project[src]

impl Serialize for Project[src]

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

Auto Trait Implementations

impl Send for Project

impl Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

impl RefUnwindSafe for Project

Blanket Implementations

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

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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

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