[][src]Struct rusoto_sesv2::ListContactListsRequest

pub struct ListContactListsRequest {
    pub next_token: Option<String>,
    pub page_size: Option<i64>,
}

Fields

next_token: Option<String>

A string token indicating that there might be additional contact lists available to be listed. Use the token provided in the Response to use in the subsequent call to ListContactLists with the same parameters to retrieve the next page of contact lists.

page_size: Option<i64>

Maximum number of contact lists to return at once. Use this parameter to paginate results. If additional contact lists exist beyond the specified limit, the NextToken element is sent in the response. Use the NextToken value in subsequent requests to retrieve additional lists.

Trait Implementations

impl Clone for ListContactListsRequest[src]

impl Debug for ListContactListsRequest[src]

impl Default for ListContactListsRequest[src]

impl PartialEq<ListContactListsRequest> for ListContactListsRequest[src]

impl Serialize for ListContactListsRequest[src]

impl StructuralPartialEq for ListContactListsRequest[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> 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> Same<T> for T

type Output = T

Should always be Self

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.