pub struct TicketRecord {Show 18 fields
pub id: String,
pub project_id: String,
pub file_path: Option<String>,
pub source: String,
pub source_ref: Option<String>,
pub state: String,
pub name: String,
pub blocked_by: Vec<String>,
pub worktree: Option<String>,
pub target: Option<String>,
pub model: Option<String>,
pub effort: Option<String>,
pub flow: Option<String>,
pub attempts: i64,
pub body: Option<String>,
pub held_reason: Option<String>,
pub created_at_ms: i64,
pub updated_at_ms: i64,
}Fields§
§id: String§project_id: String§file_path: Option<String>§source: String§source_ref: Option<String>§state: String§name: String§blocked_by: Vec<String>§worktree: Option<String>§target: Option<String>§model: Option<String>§effort: Option<String>§flow: Option<String>§attempts: i64§body: Option<String>§held_reason: Option<String>§created_at_ms: i64When the ticket was registered. sloop list orders on this.
updated_at_ms: i64Trait Implementations§
Source§impl Clone for TicketRecord
impl Clone for TicketRecord
Source§fn clone(&self) -> TicketRecord
fn clone(&self) -> TicketRecord
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 moreSource§impl Debug for TicketRecord
impl Debug for TicketRecord
impl Eq for TicketRecord
Source§impl PartialEq for TicketRecord
impl PartialEq for TicketRecord
impl StructuralPartialEq for TicketRecord
Auto Trait Implementations§
impl Freeze for TicketRecord
impl RefUnwindSafe for TicketRecord
impl Send for TicketRecord
impl Sync for TicketRecord
impl Unpin for TicketRecord
impl UnsafeUnpin for TicketRecord
impl UnwindSafe for TicketRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.