pub struct UserListQuery {
pub customer_id: Option<String>,
pub email: Option<String>,
pub status: Option<String>,
pub keycloak_user_id: Option<String>,
pub created_from: Option<i64>,
pub created_to: Option<i64>,
pub limit: Option<i32>,
pub cursor: Option<String>,
}Fields§
§customer_id: Option<String>§email: Option<String>§status: Option<String>§keycloak_user_id: Option<String>§created_from: Option<i64>§created_to: Option<i64>§limit: Option<i32>§cursor: Option<String>Trait Implementations§
Source§impl Clone for UserListQuery
impl Clone for UserListQuery
Source§fn clone(&self) -> UserListQuery
fn clone(&self) -> UserListQuery
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 UserListQuery
impl Debug for UserListQuery
Source§impl Default for UserListQuery
impl Default for UserListQuery
Source§fn default() -> UserListQuery
fn default() -> UserListQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserListQuery
impl<'de> Deserialize<'de> for UserListQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UserListQuery
impl PartialEq for UserListQuery
Source§impl Serialize for UserListQuery
impl Serialize for UserListQuery
impl Eq for UserListQuery
impl StructuralPartialEq for UserListQuery
Auto Trait Implementations§
impl Freeze for UserListQuery
impl RefUnwindSafe for UserListQuery
impl Send for UserListQuery
impl Sync for UserListQuery
impl Unpin for UserListQuery
impl UnwindSafe for UserListQuery
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