pub struct UpdateKeyParams {
pub account_sid: String,
pub sid: String,
pub friendly_name: Option<String>,
}
Expand description
struct for passing parameters to the method update_key
Fields§
§account_sid: String
The SID of the Account that created the Key resources to update.
sid: String
The Twilio-provided string that uniquely identifies the Key resource to update.
friendly_name: Option<String>
A descriptive string that you create to describe the resource. It can be up to 64 characters long.
Trait Implementations§
Source§impl Clone for UpdateKeyParams
impl Clone for UpdateKeyParams
Source§fn clone(&self) -> UpdateKeyParams
fn clone(&self) -> UpdateKeyParams
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 UpdateKeyParams
impl RefUnwindSafe for UpdateKeyParams
impl Send for UpdateKeyParams
impl Sync for UpdateKeyParams
impl Unpin for UpdateKeyParams
impl UnwindSafe for UpdateKeyParams
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