[][src]Struct rusoto_sns::ListPhoneNumbersOptedOutResponse

pub struct ListPhoneNumbersOptedOutResponse {
    pub next_token: Option<String>,
    pub phone_numbers: Option<Vec<String>>,
}

The response from the ListPhoneNumbersOptedOut action.

Fields

next_token: Option<String>

A NextToken string is returned when you call the ListPhoneNumbersOptedOut action if additional records are available after the first page of results.

phone_numbers: Option<Vec<String>>

A list of phone numbers that are opted out of receiving SMS messages. The list is paginated, and each page can contain up to 100 phone numbers.

Trait Implementations

impl Clone for ListPhoneNumbersOptedOutResponse[src]

impl Debug for ListPhoneNumbersOptedOutResponse[src]

impl Default for ListPhoneNumbersOptedOutResponse[src]

impl PartialEq<ListPhoneNumbersOptedOutResponse> for ListPhoneNumbersOptedOutResponse[src]

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