pub struct GetAliasesParams {
pub before: Option<String>,
pub page: Option<i32>,
pub since: Option<String>,
pub size: Option<i32>,
pub sort: Option<String>,
}Expand description
struct for passing parameters to the method get_aliases
Fields§
§before: Option<String>Filter by created at before the given timestamp
page: Option<i32>Optional page index in alias list pagination
since: Option<String>Filter by created at after the given timestamp
size: Option<i32>Optional page size in alias list pagination
sort: Option<String>Optional createdAt sort direction ASC or DESC
Trait Implementations§
Source§impl Clone for GetAliasesParams
impl Clone for GetAliasesParams
Source§fn clone(&self) -> GetAliasesParams
fn clone(&self) -> GetAliasesParams
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 moreAuto Trait Implementations§
impl Freeze for GetAliasesParams
impl RefUnwindSafe for GetAliasesParams
impl Send for GetAliasesParams
impl Sync for GetAliasesParams
impl Unpin for GetAliasesParams
impl UnwindSafe for GetAliasesParams
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