pub struct FetchKeyParams {
pub account_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method fetch_key
Fields§
§account_sid: String
The SID of the Account that created the Key resource to fetch.
sid: String
The Twilio-provided string that uniquely identifies the Key resource to fetch.
Trait Implementations§
Source§impl Clone for FetchKeyParams
impl Clone for FetchKeyParams
Source§fn clone(&self) -> FetchKeyParams
fn clone(&self) -> FetchKeyParams
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 FetchKeyParams
impl RefUnwindSafe for FetchKeyParams
impl Send for FetchKeyParams
impl Sync for FetchKeyParams
impl Unpin for FetchKeyParams
impl UnwindSafe for FetchKeyParams
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