Struct forgejo_api::structs::RepoGetNoteQuery
source · pub struct RepoGetNoteQuery {
pub verification: Option<bool>,
pub files: Option<bool>,
}Fields§
§verification: Option<bool>include verification for every commit (disable for speedup, default ‘true’)
files: Option<bool>include a list of affected files for every commit (disable for speedup, default ‘true’)
Trait Implementations§
source§impl Clone for RepoGetNoteQuery
impl Clone for RepoGetNoteQuery
source§fn clone(&self) -> RepoGetNoteQuery
fn clone(&self) -> RepoGetNoteQuery
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 RepoGetNoteQuery
impl Debug for RepoGetNoteQuery
source§impl Default for RepoGetNoteQuery
impl Default for RepoGetNoteQuery
source§fn default() -> RepoGetNoteQuery
fn default() -> RepoGetNoteQuery
Returns the “default value” for a type. Read more
source§impl Display for RepoGetNoteQuery
impl Display for RepoGetNoteQuery
source§impl PartialEq for RepoGetNoteQuery
impl PartialEq for RepoGetNoteQuery
source§fn eq(&self, other: &RepoGetNoteQuery) -> bool
fn eq(&self, other: &RepoGetNoteQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RepoGetNoteQuery
Auto Trait Implementations§
impl Freeze for RepoGetNoteQuery
impl RefUnwindSafe for RepoGetNoteQuery
impl Send for RepoGetNoteQuery
impl Sync for RepoGetNoteQuery
impl Unpin for RepoGetNoteQuery
impl UnwindSafe for RepoGetNoteQuery
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