pub struct FetchAuthorizedConnectAppParams {
pub account_sid: String,
pub connect_app_sid: String,
}
Expand description
struct for passing parameters to the method fetch_authorized_connect_app
Fields§
§account_sid: String
The SID of the Account that created the AuthorizedConnectApp resource to fetch.
connect_app_sid: String
The SID of the Connect App to fetch.
Trait Implementations§
Source§impl Clone for FetchAuthorizedConnectAppParams
impl Clone for FetchAuthorizedConnectAppParams
Source§fn clone(&self) -> FetchAuthorizedConnectAppParams
fn clone(&self) -> FetchAuthorizedConnectAppParams
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 FetchAuthorizedConnectAppParams
impl RefUnwindSafe for FetchAuthorizedConnectAppParams
impl Send for FetchAuthorizedConnectAppParams
impl Sync for FetchAuthorizedConnectAppParams
impl Unpin for FetchAuthorizedConnectAppParams
impl UnwindSafe for FetchAuthorizedConnectAppParams
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