pub struct NotifyGetRepoListQuery {
pub all: Option<bool>,
pub status_types: Option<Vec<String>>,
pub subject_type: Option<Vec<NotifyGetRepoListQuerySubjectType>>,
pub since: Option<OffsetDateTime>,
pub before: Option<OffsetDateTime>,
}Fields§
§all: Option<bool>If true, show notifications marked as read. Default value is false
status_types: Option<Vec<String>>Show notifications with the provided status types. Options are: unread, read and/or pinned. Defaults to unread & pinned
subject_type: Option<Vec<NotifyGetRepoListQuerySubjectType>>filter notifications by subject type
since: Option<OffsetDateTime>Only show notifications updated after the given time. This is a timestamp in RFC 3339 format
before: Option<OffsetDateTime>Only show notifications updated before the given time. This is a timestamp in RFC 3339 format
Trait Implementations§
Source§impl Clone for NotifyGetRepoListQuery
impl Clone for NotifyGetRepoListQuery
Source§fn clone(&self) -> NotifyGetRepoListQuery
fn clone(&self) -> NotifyGetRepoListQuery
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 NotifyGetRepoListQuery
impl Debug for NotifyGetRepoListQuery
Source§impl Default for NotifyGetRepoListQuery
impl Default for NotifyGetRepoListQuery
Source§fn default() -> NotifyGetRepoListQuery
fn default() -> NotifyGetRepoListQuery
Returns the “default value” for a type. Read more
Source§impl PartialEq for NotifyGetRepoListQuery
impl PartialEq for NotifyGetRepoListQuery
impl StructuralPartialEq for NotifyGetRepoListQuery
Auto Trait Implementations§
impl Freeze for NotifyGetRepoListQuery
impl RefUnwindSafe for NotifyGetRepoListQuery
impl Send for NotifyGetRepoListQuery
impl Sync for NotifyGetRepoListQuery
impl Unpin for NotifyGetRepoListQuery
impl UnwindSafe for NotifyGetRepoListQuery
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