pub struct ListIssuesAssignedToTheAuthenticatedUser<'a> {
pub filter: Option<&'a str>,
pub state: Option<&'a str>,
pub labels: Option<&'a str>,
pub sort: Option<&'a str>,
pub direction: Option<&'a str>,
pub since: Option<&'a str>,
pub collab: Option<bool>,
pub orgs: Option<bool>,
pub owned: Option<bool>,
pub pulls: Option<bool>,
pub per_page: Option<u8>,
pub page: Option<u16>,
}
Expand description
Fields§
§filter: Option<&'a str>
§state: Option<&'a str>
§labels: Option<&'a str>
§sort: Option<&'a str>
§direction: Option<&'a str>
§since: Option<&'a str>
§collab: Option<bool>
§orgs: Option<bool>
§owned: Option<bool>
§pulls: Option<bool>
§per_page: Option<u8>
§page: Option<u16>
Implementations§
Source§impl<'a> ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> ListIssuesAssignedToTheAuthenticatedUser<'a>
Sourcepub fn new() -> Self
pub fn new() -> Self
Build a ListIssuesAssignedToTheAuthenticatedUser
instance.
Trait Implementations§
Source§impl<'a> Api for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Api for ListIssuesAssignedToTheAuthenticatedUser<'a>
Source§impl<'a> ApiExt for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> ApiExt for ListIssuesAssignedToTheAuthenticatedUser<'a>
Source§impl<'a> Clone for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Clone for ListIssuesAssignedToTheAuthenticatedUser<'a>
Source§fn clone(&self) -> ListIssuesAssignedToTheAuthenticatedUser<'a>
fn clone(&self) -> ListIssuesAssignedToTheAuthenticatedUser<'a>
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<'a> Debug for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Debug for ListIssuesAssignedToTheAuthenticatedUser<'a>
Source§impl<'a> PartialEq for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> PartialEq for ListIssuesAssignedToTheAuthenticatedUser<'a>
Source§fn eq(&self, other: &ListIssuesAssignedToTheAuthenticatedUser<'a>) -> bool
fn eq(&self, other: &ListIssuesAssignedToTheAuthenticatedUser<'a>) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl<'a> Eq for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> StructuralPartialEq for ListIssuesAssignedToTheAuthenticatedUser<'a>
Auto Trait Implementations§
impl<'a> Freeze for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> RefUnwindSafe for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Send for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Sync for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> Unpin for ListIssuesAssignedToTheAuthenticatedUser<'a>
impl<'a> UnwindSafe for ListIssuesAssignedToTheAuthenticatedUser<'a>
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