pub struct DeleteSipIpAddressParams {
pub account_sid: String,
pub ip_access_control_list_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method delete_sip_ip_address
Fields§
§account_sid: String
The unique id of the Account responsible for this resource.
ip_access_control_list_sid: String
The IpAccessControlList Sid that identifies the IpAddress resources to delete.
sid: String
A 34 character string that uniquely identifies the resource to delete.
Trait Implementations§
Source§impl Clone for DeleteSipIpAddressParams
impl Clone for DeleteSipIpAddressParams
Source§fn clone(&self) -> DeleteSipIpAddressParams
fn clone(&self) -> DeleteSipIpAddressParams
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 DeleteSipIpAddressParams
impl RefUnwindSafe for DeleteSipIpAddressParams
impl Send for DeleteSipIpAddressParams
impl Sync for DeleteSipIpAddressParams
impl Unpin for DeleteSipIpAddressParams
impl UnwindSafe for DeleteSipIpAddressParams
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