pub struct ListBlockchainsParams {
pub protocol: Option<String>,
pub deprecated: Option<bool>,
pub test: Option<bool>,
pub ids: Option<Vec<String>>,
pub page_cursor: Option<String>,
pub page_size: Option<f64>,
}
Expand description
struct for passing parameters to the method [list_blockchains
]
Fields§
§protocol: Option<String>
Blockchain protocol
deprecated: Option<bool>
Is blockchain deprecated
test: Option<bool>
Is test blockchain
ids: Option<Vec<String>>
A list of blockchain IDs (max 100)
page_cursor: Option<String>
Page cursor to fetch
page_size: Option<f64>
Items per page (max 500)
Implementations§
Source§impl ListBlockchainsParams
impl ListBlockchainsParams
Sourcepub fn builder() -> ListBlockchainsParamsBuilder
pub fn builder() -> ListBlockchainsParamsBuilder
Create an instance of ListBlockchainsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for ListBlockchainsParams
impl Clone for ListBlockchainsParams
Source§fn clone(&self) -> ListBlockchainsParams
fn clone(&self) -> ListBlockchainsParams
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 ListBlockchainsParams
impl RefUnwindSafe for ListBlockchainsParams
impl Send for ListBlockchainsParams
impl Sync for ListBlockchainsParams
impl Unpin for ListBlockchainsParams
impl UnwindSafe for ListBlockchainsParams
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