pub struct Convoy {
pub convoy_id: String,
pub grite_issue_id: String,
pub title: String,
pub body: String,
pub status: ConvoyStatus,
}Expand description
A parsed convoy from a Grit issue.
Fields§
§convoy_id: StringBrat convoy ID (e.g., “c-20250116-a2f9”).
grite_issue_id: StringGrit’s internal issue ID.
title: StringConvoy title.
body: StringConvoy description/body.
status: ConvoyStatusConvoy status.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Convoy
impl<'de> Deserialize<'de> for Convoy
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 Convoy
impl RefUnwindSafe for Convoy
impl Send for Convoy
impl Sync for Convoy
impl Unpin for Convoy
impl UnwindSafe for Convoy
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