pub struct Resolved {
pub number: u64,
pub title: String,
pub branch: Option<String>,
pub origin: &'static str,
pub others: Vec<String>,
pub detail: Option<String>,
}Expand description
What one issue resolves to, before anything is seated.
Fields§
§number: u64The issue, as the forge numbers it.
title: StringThe issue’s title, for the report.
branch: Option<String>The branch the seat takes.
Absent for one case alone: a GitHub preview of an issue with no linked branch. The server names that branch at the moment it mints it, so no honest preview can print a name.
origin: &'static strWhere the name came from: already for one the forge carried,
forge for a fresh mint, pending for a name the forge has not
been asked to make yet.
others: Vec<String>Other branches the forge links to the same issue, GitHub only.
detail: Option<String>A note the report prints: a template that was read, a title the transliteration table did not cover, a confidential issue.
Trait Implementations§
impl Eq for Resolved
impl StructuralPartialEq for Resolved
Auto Trait Implementations§
impl Freeze for Resolved
impl RefUnwindSafe for Resolved
impl Send for Resolved
impl Sync for Resolved
impl Unpin for Resolved
impl UnsafeUnpin for Resolved
impl UnwindSafe for Resolved
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