pub struct SearchNetworkIdsParams {
pub search: Option<String>,
pub exclude_self: Option<bool>,
pub exclude_connected: Option<bool>,
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
}
Expand description
struct for passing parameters to the method [search_network_ids
]
Fields§
§search: Option<String>
Search string - displayName networkId. Optional
exclude_self: Option<bool>
Exclude your networkIds. Optional, default false
exclude_connected: Option<bool>
Exclude connected networkIds. Optional, default false
page_cursor: Option<String>
ID of the record after which to fetch $limit records
page_size: Option<f64>
Number of records to fetch. By default, it is 50
Implementations§
Source§impl SearchNetworkIdsParams
impl SearchNetworkIdsParams
Sourcepub fn builder() -> SearchNetworkIdsParamsBuilder
pub fn builder() -> SearchNetworkIdsParamsBuilder
Create an instance of SearchNetworkIdsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for SearchNetworkIdsParams
impl Clone for SearchNetworkIdsParams
Source§fn clone(&self) -> SearchNetworkIdsParams
fn clone(&self) -> SearchNetworkIdsParams
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 SearchNetworkIdsParams
impl RefUnwindSafe for SearchNetworkIdsParams
impl Send for SearchNetworkIdsParams
impl Sync for SearchNetworkIdsParams
impl Unpin for SearchNetworkIdsParams
impl UnwindSafe for SearchNetworkIdsParams
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