Struct aws_sdk_sns::output::ListOriginationNumbersOutput
source · [−]#[non_exhaustive]pub struct ListOriginationNumbersOutput {
pub next_token: Option<String>,
pub phone_numbers: Option<Vec<PhoneNumberInformation>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.next_token: Option<String>A NextToken string is returned when you call the ListOriginationNumbers operation if additional pages of records are available.
phone_numbers: Option<Vec<PhoneNumberInformation>>A list of the calling account's verified and pending origination numbers.
Implementations
sourceimpl ListOriginationNumbersOutput
impl ListOriginationNumbersOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A NextToken string is returned when you call the ListOriginationNumbers operation if additional pages of records are available.
sourcepub fn phone_numbers(&self) -> Option<&[PhoneNumberInformation]>
pub fn phone_numbers(&self) -> Option<&[PhoneNumberInformation]>
A list of the calling account's verified and pending origination numbers.
sourceimpl ListOriginationNumbersOutput
impl ListOriginationNumbersOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListOriginationNumbersOutput
Trait Implementations
sourceimpl Clone for ListOriginationNumbersOutput
impl Clone for ListOriginationNumbersOutput
sourcefn clone(&self) -> ListOriginationNumbersOutput
fn clone(&self) -> ListOriginationNumbersOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ListOriginationNumbersOutput
impl Debug for ListOriginationNumbersOutput
sourceimpl PartialEq<ListOriginationNumbersOutput> for ListOriginationNumbersOutput
impl PartialEq<ListOriginationNumbersOutput> for ListOriginationNumbersOutput
sourcefn eq(&self, other: &ListOriginationNumbersOutput) -> bool
fn eq(&self, other: &ListOriginationNumbersOutput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &ListOriginationNumbersOutput) -> bool
fn ne(&self, other: &ListOriginationNumbersOutput) -> bool
This method tests for !=.
impl StructuralPartialEq for ListOriginationNumbersOutput
Auto Trait Implementations
impl RefUnwindSafe for ListOriginationNumbersOutput
impl Send for ListOriginationNumbersOutput
impl Sync for ListOriginationNumbersOutput
impl Unpin for ListOriginationNumbersOutput
impl UnwindSafe for ListOriginationNumbersOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more