pub struct CreateNewSigningKeyParams {
pub account_sid: String,
pub friendly_name: Option<String>,
}Expand description
struct for passing parameters to the method create_new_signing_key
Fields§
§account_sid: StringThe SID of the Account that will be responsible for the new Key resource.
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 CreateNewSigningKeyParams
impl Clone for CreateNewSigningKeyParams
Source§fn clone(&self) -> CreateNewSigningKeyParams
fn clone(&self) -> CreateNewSigningKeyParams
Returns a duplicate 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 CreateNewSigningKeyParams
impl RefUnwindSafe for CreateNewSigningKeyParams
impl Send for CreateNewSigningKeyParams
impl Sync for CreateNewSigningKeyParams
impl Unpin for CreateNewSigningKeyParams
impl UnwindSafe for CreateNewSigningKeyParams
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