pub struct IssueEntry {
pub package: String,
pub iid: u64,
pub title: String,
pub url: String,
pub status: String,
pub assignees: Vec<String>,
pub in_manifest: Option<bool>,
}Expand description
A single issue entry for the list-issues output.
Fields§
§package: String§iid: u64§title: String§url: String§status: String§assignees: Vec<String>§in_manifest: Option<bool>Trait Implementations§
Source§impl Debug for IssueEntry
impl Debug for IssueEntry
Auto Trait Implementations§
impl Freeze for IssueEntry
impl RefUnwindSafe for IssueEntry
impl Send for IssueEntry
impl Sync for IssueEntry
impl Unpin for IssueEntry
impl UnsafeUnpin for IssueEntry
impl UnwindSafe for IssueEntry
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