Struct rusoto_sns::CheckIfPhoneNumberIsOptedOutResponse[][src]

pub struct CheckIfPhoneNumberIsOptedOutResponse {
    pub is_opted_out: Option<bool>,
}

The response from the CheckIfPhoneNumberIsOptedOut action.

Fields

Indicates whether the phone number is opted out:

  • true – The phone number is opted out, meaning you cannot publish SMS messages to it.

  • false – The phone number is opted in, meaning you can publish SMS messages to it.

Trait Implementations

impl Default for CheckIfPhoneNumberIsOptedOutResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for CheckIfPhoneNumberIsOptedOutResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for CheckIfPhoneNumberIsOptedOutResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CheckIfPhoneNumberIsOptedOutResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations