pub struct GriteIssue {
pub issue_id: String,
pub title: String,
pub body: String,
pub labels: Vec<String>,
pub state: String,
pub updated_ts: i64,
}Expand description
A Grit issue as returned by grite issue show --json.
Fields§
§issue_id: String§title: String§body: String§labels: Vec<String>§state: String§updated_ts: i64Trait Implementations§
Source§impl Clone for GriteIssue
impl Clone for GriteIssue
Source§fn clone(&self) -> GriteIssue
fn clone(&self) -> GriteIssue
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 moreSource§impl Debug for GriteIssue
impl Debug for GriteIssue
Source§impl<'de> Deserialize<'de> for GriteIssue
impl<'de> Deserialize<'de> for GriteIssue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GriteIssue
impl RefUnwindSafe for GriteIssue
impl Send for GriteIssue
impl Sync for GriteIssue
impl Unpin for GriteIssue
impl UnwindSafe for GriteIssue
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