pub struct UserListOptions {
pub account_id: i64,
pub search: Option<String>,
pub is_active: Option<bool>,
pub page: Option<i64>,
pub limit: Option<i64>,
}Fields§
§account_id: i64§search: Option<String>§is_active: Option<bool>§page: Option<i64>§limit: Option<i64>Trait Implementations§
Source§impl Clone for UserListOptions
impl Clone for UserListOptions
Source§fn clone(&self) -> UserListOptions
fn clone(&self) -> UserListOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UserListOptions
impl Debug for UserListOptions
Source§impl Default for UserListOptions
impl Default for UserListOptions
Source§fn default() -> UserListOptions
fn default() -> UserListOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UserListOptions
impl RefUnwindSafe for UserListOptions
impl Send for UserListOptions
impl Sync for UserListOptions
impl Unpin for UserListOptions
impl UnsafeUnpin for UserListOptions
impl UnwindSafe for UserListOptions
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