Struct forgejo_api::structs::IssueGetCommentsQuery
source · pub struct IssueGetCommentsQuery {
pub since: Option<OffsetDateTime>,
pub before: Option<OffsetDateTime>,
}Fields§
§since: Option<OffsetDateTime>if provided, only comments updated since the specified time are returned.
before: Option<OffsetDateTime>if provided, only comments updated before the provided time are returned.
Trait Implementations§
source§impl Clone for IssueGetCommentsQuery
impl Clone for IssueGetCommentsQuery
source§fn clone(&self) -> IssueGetCommentsQuery
fn clone(&self) -> IssueGetCommentsQuery
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 IssueGetCommentsQuery
impl Debug for IssueGetCommentsQuery
source§impl Default for IssueGetCommentsQuery
impl Default for IssueGetCommentsQuery
source§fn default() -> IssueGetCommentsQuery
fn default() -> IssueGetCommentsQuery
Returns the “default value” for a type. Read more
source§impl Display for IssueGetCommentsQuery
impl Display for IssueGetCommentsQuery
source§impl PartialEq for IssueGetCommentsQuery
impl PartialEq for IssueGetCommentsQuery
source§fn eq(&self, other: &IssueGetCommentsQuery) -> bool
fn eq(&self, other: &IssueGetCommentsQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for IssueGetCommentsQuery
Auto Trait Implementations§
impl Freeze for IssueGetCommentsQuery
impl RefUnwindSafe for IssueGetCommentsQuery
impl Send for IssueGetCommentsQuery
impl Sync for IssueGetCommentsQuery
impl Unpin for IssueGetCommentsQuery
impl UnwindSafe for IssueGetCommentsQuery
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