pub struct RepoTrackedTimesQuery {
pub user: Option<String>,
pub since: Option<OffsetDateTime>,
pub before: Option<OffsetDateTime>,
pub page: Option<u32>,
pub limit: Option<u32>,
}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
page: Option<u32>page number of results to return (1-based)
limit: Option<u32>page size of results
Trait Implementations§
Source§impl Clone for RepoTrackedTimesQuery
impl Clone for RepoTrackedTimesQuery
Source§fn clone(&self) -> RepoTrackedTimesQuery
fn clone(&self) -> RepoTrackedTimesQuery
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 RepoTrackedTimesQuery
impl Debug for RepoTrackedTimesQuery
Source§impl Default for RepoTrackedTimesQuery
impl Default for RepoTrackedTimesQuery
Source§fn default() -> RepoTrackedTimesQuery
fn default() -> RepoTrackedTimesQuery
Returns the “default value” for a type. Read more
Source§impl Display for RepoTrackedTimesQuery
impl Display for RepoTrackedTimesQuery
Source§impl PartialEq for RepoTrackedTimesQuery
impl PartialEq for RepoTrackedTimesQuery
impl StructuralPartialEq for RepoTrackedTimesQuery
Auto Trait Implementations§
impl Freeze for RepoTrackedTimesQuery
impl RefUnwindSafe for RepoTrackedTimesQuery
impl Send for RepoTrackedTimesQuery
impl Sync for RepoTrackedTimesQuery
impl Unpin for RepoTrackedTimesQuery
impl UnwindSafe for RepoTrackedTimesQuery
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