pub struct ListIncomingPhoneNumberAssignedAddOnParams {
pub account_sid: String,
pub resource_sid: String,
pub page_size: Option<i32>,
pub page: Option<i32>,
pub page_token: Option<String>,
}
Expand description
struct for passing parameters to the method list_incoming_phone_number_assigned_add_on
Fields§
§account_sid: String
The SID of the Account that created the resources to read.
resource_sid: String
The SID of the Phone Number to which the Add-on is assigned.
page_size: Option<i32>
How many resources to return in each list page. The default is 50, and the maximum is 1000.
page: Option<i32>
The page index. This value is simply for client state.
page_token: Option<String>
The page token. This is provided by the API.
Trait Implementations§
Source§impl Clone for ListIncomingPhoneNumberAssignedAddOnParams
impl Clone for ListIncomingPhoneNumberAssignedAddOnParams
Source§fn clone(&self) -> ListIncomingPhoneNumberAssignedAddOnParams
fn clone(&self) -> ListIncomingPhoneNumberAssignedAddOnParams
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 ListIncomingPhoneNumberAssignedAddOnParams
impl RefUnwindSafe for ListIncomingPhoneNumberAssignedAddOnParams
impl Send for ListIncomingPhoneNumberAssignedAddOnParams
impl Sync for ListIncomingPhoneNumberAssignedAddOnParams
impl Unpin for ListIncomingPhoneNumberAssignedAddOnParams
impl UnwindSafe for ListIncomingPhoneNumberAssignedAddOnParams
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