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