pub struct GetSubAccountsParams {
pub account: Option<String>,
}Expand description
- Retrieves all Sub Accounts if no additional parameter is provided. - Retrieves Reseller Client Accounts if Reseller Client ID is provided. - Retrieves a specific Sub Account if a Sub Account is provided.
Parameters for Client::get_sub_accounts (wire method getSubAccounts).
Fields§
§account: Option<String>Parameter could have the following values: * Empty Value [Not Required] * Specific Sub Account (Example: ‘100000_VoIP’) * Specific Reseller Client ID (Example: 561115)
Trait Implementations§
Source§impl Clone for GetSubAccountsParams
impl Clone for GetSubAccountsParams
Source§fn clone(&self) -> GetSubAccountsParams
fn clone(&self) -> GetSubAccountsParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetSubAccountsParams
impl Debug for GetSubAccountsParams
Source§impl Default for GetSubAccountsParams
impl Default for GetSubAccountsParams
Source§fn default() -> GetSubAccountsParams
fn default() -> GetSubAccountsParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetSubAccountsParams
impl RefUnwindSafe for GetSubAccountsParams
impl Send for GetSubAccountsParams
impl Sync for GetSubAccountsParams
impl Unpin for GetSubAccountsParams
impl UnsafeUnpin for GetSubAccountsParams
impl UnwindSafe for GetSubAccountsParams
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