pub struct GetVaspsParams {
pub order: Option<String>,
pub per_page: Option<f64>,
pub page: Option<f64>,
pub fields: Option<String>,
pub q: Option<String>,
pub review_value: Option<String>,
}
Expand description
struct for passing parameters to the method [get_vasps
]
Fields§
§order: Option<String>
Field to order by
per_page: Option<f64>
Records per page
page: Option<f64>
Page number
fields: Option<String>
CSV of fields to return (all, "blank" or see list of all field names below)
q: Option<String>
Search query
review_value: Option<String>
Filter by the VASP’s review status. Possible values include: "TRUSTED", "BLOCKED", "MANUAL", or "NULL". When provided, only VASPs that match the specified reviewValue will be returned (i.e., VASPs that have already been reviewed to this status).
Implementations§
Source§impl GetVaspsParams
impl GetVaspsParams
Sourcepub fn builder() -> GetVaspsParamsBuilder
pub fn builder() -> GetVaspsParamsBuilder
Create an instance of GetVaspsParams
using the builder syntax
Trait Implementations§
Source§impl Clone for GetVaspsParams
impl Clone for GetVaspsParams
Source§fn clone(&self) -> GetVaspsParams
fn clone(&self) -> GetVaspsParams
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 GetVaspsParams
impl RefUnwindSafe for GetVaspsParams
impl Send for GetVaspsParams
impl Sync for GetVaspsParams
impl Unpin for GetVaspsParams
impl UnwindSafe for GetVaspsParams
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