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