pub struct GetParams {
pub order: Option<String>,
pub filter: Option<GetFilterParameter>,
pub sort: Option<String>,
pub page_size: Option<f64>,
pub next: Option<String>,
}
Expand description
struct for passing parameters to the method [get
]
Fields§
§order: Option<String>
List order (ascending or descending)
filter: Option<GetFilterParameter>
Parsed filter object
sort: Option<String>
Property to sort Web3 connections by.
page_size: Option<f64>
Amount of results to return in the next page.
next: Option<String>
Cursor to the next page
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GetParams
impl RefUnwindSafe for GetParams
impl Send for GetParams
impl Sync for GetParams
impl Unpin for GetParams
impl UnwindSafe for GetParams
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