pub struct GetConnectedAccountsParams {
pub main_accounts: Option<bool>,
pub page_size: Option<u8>,
pub page_cursor: Option<String>,
}Expand description
struct for passing parameters to the method
ConnectedAccountsBetaApi::get_connected_accounts
Fields§
§main_accounts: Option<bool>Whether to include only main accounts in the response.
page_size: Option<u8>Page size for pagination.
page_cursor: Option<String>Page cursor for pagination.
Implementations§
Source§impl GetConnectedAccountsParams
impl GetConnectedAccountsParams
Sourcepub fn builder() -> GetConnectedAccountsParamsBuilder
pub fn builder() -> GetConnectedAccountsParamsBuilder
Create an instance of GetConnectedAccountsParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetConnectedAccountsParams
impl Clone for GetConnectedAccountsParams
Source§fn clone(&self) -> GetConnectedAccountsParams
fn clone(&self) -> GetConnectedAccountsParams
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 GetConnectedAccountsParams
impl RefUnwindSafe for GetConnectedAccountsParams
impl Send for GetConnectedAccountsParams
impl Sync for GetConnectedAccountsParams
impl Unpin for GetConnectedAccountsParams
impl UnwindSafe for GetConnectedAccountsParams
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