pub struct ListServicesParams {
pub page: Option<i32>,
pub per_page: Option<i32>,
pub sort: Option<String>,
pub direction: Option<String>,
}
Expand description
struct for passing parameters to the method list_services
Fields§
§page: Option<i32>
Current page.
per_page: Option<i32>
Number of records per page.
sort: Option<String>
Field on which to sort.
direction: Option<String>
Direction in which to sort results.
Trait Implementations§
Source§impl Clone for ListServicesParams
impl Clone for ListServicesParams
Source§fn clone(&self) -> ListServicesParams
fn clone(&self) -> ListServicesParams
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 moreSource§impl Debug for ListServicesParams
impl Debug for ListServicesParams
Source§impl Default for ListServicesParams
impl Default for ListServicesParams
Source§fn default() -> ListServicesParams
fn default() -> ListServicesParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ListServicesParams
impl RefUnwindSafe for ListServicesParams
impl Send for ListServicesParams
impl Sync for ListServicesParams
impl Unpin for ListServicesParams
impl UnwindSafe for ListServicesParams
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