pub struct GetConference<'a> {
pub conference: Conference<'a>,
pub client: &'a Twilio,
}
Fields§
§conference: Conference<'a>
§client: &'a Twilio
Implementations§
Source§impl<'a> GetConference<'a>
impl<'a> GetConference<'a>
pub fn end(self) -> GetConference<'a>
Trait Implementations§
Source§impl<'a> Debug for GetConference<'a>
impl<'a> Debug for GetConference<'a>
Source§impl<'a> Execute for GetConference<'a>
impl<'a> Execute for GetConference<'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> TwilioRequest for GetConference<'a>
impl<'a> TwilioRequest for GetConference<'a>
type Resp = ConferenceResp
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 GetConference<'a>
impl<'a> !RefUnwindSafe for GetConference<'a>
impl<'a> Send for GetConference<'a>
impl<'a> Sync for GetConference<'a>
impl<'a> Unpin for GetConference<'a>
impl<'a> !UnwindSafe for GetConference<'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