[][src]Struct mailslurp::models::page_sent_email_projection::PageSentEmailProjection

pub struct PageSentEmailProjection {
    pub content: Option<Vec<SentEmailProjection>>,
    pub empty: Option<bool>,
    pub first: Option<bool>,
    pub last: Option<bool>,
    pub number: Option<i32>,
    pub number_of_elements: Option<i32>,
    pub pageable: Option<Pageable>,
    pub size: Option<i32>,
    pub sort: Option<Sort>,
    pub total_elements: Option<i64>,
    pub total_pages: Option<i32>,
}

PageSentEmailProjection : Paginated sent email results. Page index starts at zero. Projection results may omit larger entity fields. For fetching a full sent email entity use the projection ID with individual method calls.

Fields

content: Option<Vec<SentEmailProjection>>empty: Option<bool>first: Option<bool>last: Option<bool>number: Option<i32>number_of_elements: Option<i32>pageable: Option<Pageable>size: Option<i32>sort: Option<Sort>total_elements: Option<i64>total_pages: Option<i32>

Implementations

impl PageSentEmailProjection[src]

pub fn new() -> PageSentEmailProjection[src]

Paginated sent email results. Page index starts at zero. Projection results may omit larger entity fields. For fetching a full sent email entity use the projection ID with individual method calls.

Trait Implementations

impl Clone for PageSentEmailProjection[src]

impl Debug for PageSentEmailProjection[src]

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

impl PartialEq<PageSentEmailProjection> for PageSentEmailProjection[src]

impl Serialize for PageSentEmailProjection[src]

impl StructuralPartialEq for PageSentEmailProjection[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, 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.