pub struct FetchSipIpAddressParams {
pub account_sid: String,
pub ip_access_control_list_sid: String,
pub sid: String,
}
Expand description
struct for passing parameters to the method fetch_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 fetch.
sid: String
A 34 character string that uniquely identifies the IpAddress resource to fetch.
Trait Implementations§
Source§impl Clone for FetchSipIpAddressParams
impl Clone for FetchSipIpAddressParams
Source§fn clone(&self) -> FetchSipIpAddressParams
fn clone(&self) -> FetchSipIpAddressParams
Returns a copy 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 FetchSipIpAddressParams
impl RefUnwindSafe for FetchSipIpAddressParams
impl Send for FetchSipIpAddressParams
impl Sync for FetchSipIpAddressParams
impl Unpin for FetchSipIpAddressParams
impl UnwindSafe for FetchSipIpAddressParams
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