pub struct ExistingIssue {
pub number: i64,
pub url: String,
pub title: String,
pub body: String,
pub open: bool,
}Expand description
An issue that already covers what spar was about to file.
Fields§
§number: i64§url: String§title: String§body: String§open: boolTrait Implementations§
Source§impl Clone for ExistingIssue
impl Clone for ExistingIssue
Source§fn clone(&self) -> ExistingIssue
fn clone(&self) -> ExistingIssue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExistingIssue
impl RefUnwindSafe for ExistingIssue
impl Send for ExistingIssue
impl Sync for ExistingIssue
impl Unpin for ExistingIssue
impl UnsafeUnpin for ExistingIssue
impl UnwindSafe for ExistingIssue
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