pub struct IssueCommands { /* private fields */ }
Expand description
Issue commands namespace
Implementations§
Source§impl IssueCommands
impl IssueCommands
Sourcepub fn create(&self) -> IssueCreateCommand
pub fn create(&self) -> IssueCreateCommand
Create a new issue
Sourcepub fn list(&self) -> IssueListCommand
pub fn list(&self) -> IssueListCommand
List issues
Sourcepub fn view(&self, number: u32) -> IssueViewCommand
pub fn view(&self, number: u32) -> IssueViewCommand
View an issue
Sourcepub fn close(&self, number: u32) -> IssueCloseCommand
pub fn close(&self, number: u32) -> IssueCloseCommand
Close an issue
Sourcepub fn reopen(&self, number: u32) -> IssueReopenCommand
pub fn reopen(&self, number: u32) -> IssueReopenCommand
Reopen an issue
Trait Implementations§
Source§impl Clone for IssueCommands
impl Clone for IssueCommands
Source§fn clone(&self) -> IssueCommands
fn clone(&self) -> IssueCommands
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 moreAuto Trait Implementations§
impl Freeze for IssueCommands
impl RefUnwindSafe for IssueCommands
impl Send for IssueCommands
impl Sync for IssueCommands
impl Unpin for IssueCommands
impl UnwindSafe for IssueCommands
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