pub struct IssueRef { /* private fields */ }Expand description
Provides access to operations available for a single issue
Typically accessed from github.repo(.., ..).issues().get(number)
Implementations§
Source§impl IssueRef
impl IssueRef
Sourcepub fn labels(&self) -> IssueLabels
pub fn labels(&self) -> IssueLabels
Return a reference to labels operations available for this issue
Sourcepub fn assignees(&self) -> IssueAssignees
pub fn assignees(&self) -> IssueAssignees
Return a reference to assignee operations available for this issue
Sourcepub fn edit(&self, is: &IssueOptions) -> Future<Issue>
pub fn edit(&self, is: &IssueOptions) -> Future<Issue>
Edit the issues options
Auto Trait Implementations§
impl Freeze for IssueRef
impl !RefUnwindSafe for IssueRef
impl Send for IssueRef
impl Sync for IssueRef
impl Unpin for IssueRef
impl !UnwindSafe for IssueRef
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