Struct forgejo_api::structs::AdminSearchUsersQuery
source · pub struct AdminSearchUsersQuery {
pub source_id: Option<u64>,
pub login_name: Option<String>,
pub page: Option<u32>,
pub limit: Option<u32>,
}Fields§
§source_id: Option<u64>ID of the user’s login source to search for
login_name: Option<String>user’s login name to search for
page: Option<u32>page number of results to return (1-based)
limit: Option<u32>page size of results
Trait Implementations§
source§impl Clone for AdminSearchUsersQuery
impl Clone for AdminSearchUsersQuery
source§fn clone(&self) -> AdminSearchUsersQuery
fn clone(&self) -> AdminSearchUsersQuery
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 moresource§impl Debug for AdminSearchUsersQuery
impl Debug for AdminSearchUsersQuery
source§impl Default for AdminSearchUsersQuery
impl Default for AdminSearchUsersQuery
source§fn default() -> AdminSearchUsersQuery
fn default() -> AdminSearchUsersQuery
Returns the “default value” for a type. Read more
source§impl Display for AdminSearchUsersQuery
impl Display for AdminSearchUsersQuery
source§impl PartialEq for AdminSearchUsersQuery
impl PartialEq for AdminSearchUsersQuery
source§fn eq(&self, other: &AdminSearchUsersQuery) -> bool
fn eq(&self, other: &AdminSearchUsersQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AdminSearchUsersQuery
Auto Trait Implementations§
impl Freeze for AdminSearchUsersQuery
impl RefUnwindSafe for AdminSearchUsersQuery
impl Send for AdminSearchUsersQuery
impl Sync for AdminSearchUsersQuery
impl Unpin for AdminSearchUsersQuery
impl UnwindSafe for AdminSearchUsersQuery
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