pub struct WorkTicket {
pub id: String,
pub project_id: String,
pub name: String,
pub body: String,
pub state: WorkTicketState,
pub blocked_by: Vec<String>,
pub attempts: u32,
pub hints: ExecutionHints,
pub version: SourceVersion,
}Fields§
§id: String§project_id: String§name: String§body: String§state: WorkTicketState§blocked_by: Vec<String>§attempts: u32§hints: ExecutionHints§version: SourceVersionTrait Implementations§
Source§impl Clone for WorkTicket
impl Clone for WorkTicket
Source§fn clone(&self) -> WorkTicket
fn clone(&self) -> WorkTicket
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 WorkTicket
impl Debug for WorkTicket
Source§impl<'de> Deserialize<'de> for WorkTicket
impl<'de> Deserialize<'de> for WorkTicket
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
impl Eq for WorkTicket
Source§impl PartialEq for WorkTicket
impl PartialEq for WorkTicket
Source§impl Serialize for WorkTicket
impl Serialize for WorkTicket
impl StructuralPartialEq for WorkTicket
Auto Trait Implementations§
impl Freeze for WorkTicket
impl RefUnwindSafe for WorkTicket
impl Send for WorkTicket
impl Sync for WorkTicket
impl Unpin for WorkTicket
impl UnsafeUnpin for WorkTicket
impl UnwindSafe for WorkTicket
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.