pub struct UpdateOutgoingCallerIdParams {
pub account_sid: String,
pub sid: String,
pub friendly_name: Option<String>,
}
Expand description
struct for passing parameters to the method update_outgoing_caller_id
Fields§
§account_sid: String
The SID of the Account that created the OutgoingCallerId resources to update.
sid: String
The Twilio-provided string that uniquely identifies the OutgoingCallerId 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 UpdateOutgoingCallerIdParams
impl Clone for UpdateOutgoingCallerIdParams
Source§fn clone(&self) -> UpdateOutgoingCallerIdParams
fn clone(&self) -> UpdateOutgoingCallerIdParams
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 UpdateOutgoingCallerIdParams
impl RefUnwindSafe for UpdateOutgoingCallerIdParams
impl Send for UpdateOutgoingCallerIdParams
impl Sync for UpdateOutgoingCallerIdParams
impl Unpin for UpdateOutgoingCallerIdParams
impl UnwindSafe for UpdateOutgoingCallerIdParams
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