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