pub struct MessagesDetails<'a> {
pub client: &'a Twilio,
pub from: Option<&'a str>,
pub to: Option<&'a str>,
pub date_sent: Option<&'a str>,
}
Fields§
§client: &'a Twilio
§from: Option<&'a str>
§to: Option<&'a str>
§date_sent: Option<&'a str>
Trait Implementations§
Source§impl<'a> Debug for MessagesDetails<'a>
impl<'a> Debug for MessagesDetails<'a>
Source§impl<'a> Execute for MessagesDetails<'a>
impl<'a> Execute for MessagesDetails<'a>
fn request<U>( &self, method: Method, url: U, body: Option<String>, ) -> Result<Request<Body>, TwilioErr>
fn execute<'life0, 'async_trait, U, D>(
&'life0 self,
method: Method,
url: U,
body: Option<String>,
) -> Pin<Box<dyn Future<Output = TwilioResp<TwilioJson<D>>> + Send + 'async_trait>>where
U: AsRef<str> + Send + 'async_trait,
D: for<'de> Deserialize<'de> + 'async_trait,
Self: 'async_trait,
'life0: 'async_trait,
Source§impl<'a> ToString for MessagesDetails<'a>
impl<'a> ToString for MessagesDetails<'a>
Source§impl<'a> TwilioRequest for MessagesDetails<'a>
impl<'a> TwilioRequest for MessagesDetails<'a>
type Resp = ListAllMsgs
fn run<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = TwilioResp<TwilioJson<Self::Resp>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl<'a> Freeze for MessagesDetails<'a>
impl<'a> !RefUnwindSafe for MessagesDetails<'a>
impl<'a> Send for MessagesDetails<'a>
impl<'a> Sync for MessagesDetails<'a>
impl<'a> Unpin for MessagesDetails<'a>
impl<'a> !UnwindSafe for MessagesDetails<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more