pub struct FetchConnectAppParams {
pub account_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method fetch_connect_app
Fields§
§account_sid: String
The SID of the Account that created the ConnectApp resource to fetch.
sid: String
The Twilio-provided string that uniquely identifies the ConnectApp resource to fetch.
Trait Implementations§
Source§impl Clone for FetchConnectAppParams
impl Clone for FetchConnectAppParams
Source§fn clone(&self) -> FetchConnectAppParams
fn clone(&self) -> FetchConnectAppParams
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for FetchConnectAppParams
impl RefUnwindSafe for FetchConnectAppParams
impl Send for FetchConnectAppParams
impl Sync for FetchConnectAppParams
impl Unpin for FetchConnectAppParams
impl UnwindSafe for FetchConnectAppParams
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