pub struct IssueTrackedTimesQuery {
pub user: Option<String>,
pub since: Option<OffsetDateTime>,
pub before: Option<OffsetDateTime>,
}Fields§
§user: Option<String>optional filter by user (available for issue managers)
since: Option<OffsetDateTime>Only show times updated after the given time. This is a timestamp in RFC 3339 format
before: Option<OffsetDateTime>Only show times updated before the given time. This is a timestamp in RFC 3339 format
Trait Implementations§
Source§impl Clone for IssueTrackedTimesQuery
impl Clone for IssueTrackedTimesQuery
Source§fn clone(&self) -> IssueTrackedTimesQuery
fn clone(&self) -> IssueTrackedTimesQuery
Returns a duplicate 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 IssueTrackedTimesQuery
impl Debug for IssueTrackedTimesQuery
Source§impl Default for IssueTrackedTimesQuery
impl Default for IssueTrackedTimesQuery
Source§fn default() -> IssueTrackedTimesQuery
fn default() -> IssueTrackedTimesQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for IssueTrackedTimesQuery
impl PartialEq for IssueTrackedTimesQuery
impl StructuralPartialEq for IssueTrackedTimesQuery
Auto Trait Implementations§
impl Freeze for IssueTrackedTimesQuery
impl RefUnwindSafe for IssueTrackedTimesQuery
impl Send for IssueTrackedTimesQuery
impl Sync for IssueTrackedTimesQuery
impl Unpin for IssueTrackedTimesQuery
impl UnwindSafe for IssueTrackedTimesQuery
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