[][src]Struct rusoto_sesv2::ListContactsRequest

pub struct ListContactsRequest {
    pub contact_list_name: String,
    pub filter: Option<ListContactsFilter>,
    pub next_token: Option<String>,
    pub page_size: Option<i64>,
}

Fields

contact_list_name: String

The name of the contact list.

filter: Option<ListContactsFilter>

A filter that can be applied to a list of contacts.

next_token: Option<String>

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

page_size: Option<i64>

The number of contacts that may be returned at once, which is dependent on if there are more or less contacts than the value of the PageSize. Use this parameter to paginate results. If additional contacts exist beyond the specified limit, the NextToken element is sent in the response. Use the NextToken value in subsequent requests to retrieve additional contacts.

Trait Implementations

impl Clone for ListContactsRequest[src]

impl Debug for ListContactsRequest[src]

impl Default for ListContactsRequest[src]

impl PartialEq<ListContactsRequest> for ListContactsRequest[src]

impl Serialize for ListContactsRequest[src]

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