[][src]Struct wordpress::GetTypesData

pub struct GetTypesData<'a> {
    pub context: Option<&'a str>,
    pub page: Option<u64>,
    pub per_page: Option<u8>,
    pub search: Option<&'a str>,
    pub categories: Option<u64>,
    pub order: Option<Order>,
    pub offset: Option<u64>,
    pub tags: Option<String>,
    pub order_by: Option<OrderBy>,
}

Fields

context: Option<&'a str>page: Option<u64>per_page: Option<u8>search: Option<&'a str>categories: Option<u64>order: Option<Order>offset: Option<u64>tags: Option<String>order_by: Option<OrderBy>

Trait Implementations

impl<'a> Clone for GetTypesData<'a>[src]

impl<'a> Debug for GetTypesData<'a>[src]

impl<'a> Default for GetTypesData<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for GetTypesData<'a>[src]

impl<'a> Serialize for GetTypesData<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for GetTypesData<'a>[src]

impl<'a> Send for GetTypesData<'a>[src]

impl<'a> Sync for GetTypesData<'a>[src]

impl<'a> Unpin for GetTypesData<'a>[src]

impl<'a> UnwindSafe for GetTypesData<'a>[src]

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.