Struct termii_rust::async_impl::rest::switch::number::Number
source · [−]pub struct Number<'a> { /* private fields */ }
Implementations
sourceimpl<'a> Number<'a>
impl<'a> Number<'a>
sourcepub async fn send(
&self,
message: NumberMessageRequest
) -> Result<NumberMessageResponse, HttpError>
pub async fn send(
&self,
message: NumberMessageRequest
) -> Result<NumberMessageResponse, HttpError>
Send a message to a recipient using termii’s auto generated number.
Examples
use termii_rust::{async_impl::rest::termii, common::switch::number::NumberMessageRequest};
let client = termii::Termii::new("Your API key");
let message_payload =
NumberMessageRequest::new("234XXXXXXXXXX".to_string(), "Your message".to_string());
let message_response = client.switch.number.send(message_payload).await.unwrap();
println!("{:?}", message_response);
Trait Implementations
Auto Trait Implementations
impl<'a> !RefUnwindSafe for Number<'a>
impl<'a> Send for Number<'a>
impl<'a> Sync for Number<'a>
impl<'a> Unpin for Number<'a>
impl<'a> !UnwindSafe for Number<'a>
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