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