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