pub struct IndexEntry {Show 14 fields
pub id: String,
pub title: String,
pub status: Status,
pub priority: u8,
pub parent: Option<String>,
pub dependencies: Vec<String>,
pub labels: Vec<String>,
pub assignee: Option<String>,
pub updated_at: DateTime<Utc>,
pub produces: Vec<String>,
pub requires: Vec<String>,
pub has_verify: bool,
pub claimed_by: Option<String>,
pub attempts: u32,
}Fields§
§id: String§title: String§status: Status§priority: u8§parent: Option<String>§dependencies: Vec<String>§labels: Vec<String>§assignee: Option<String>§updated_at: DateTime<Utc>§produces: Vec<String>Artifacts this bean produces (for smart dependency inference)
requires: Vec<String>Artifacts this bean requires (for smart dependency inference)
has_verify: boolWhether this bean has a verify command (SPECs have verify, GOALs don’t)
claimed_by: Option<String>Agent or user currently holding a claim on this bean (e.g., “spro:12345” for agent with PID)
attempts: u32Number of verify attempts so far
Trait Implementations§
Source§impl Clone for IndexEntry
impl Clone for IndexEntry
Source§fn clone(&self) -> IndexEntry
fn clone(&self) -> IndexEntry
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 IndexEntry
impl Debug for IndexEntry
Source§impl<'de> Deserialize<'de> for IndexEntry
impl<'de> Deserialize<'de> for IndexEntry
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
Source§impl From<&Bean> for IndexEntry
impl From<&Bean> for IndexEntry
Source§impl PartialEq for IndexEntry
impl PartialEq for IndexEntry
Source§impl Serialize for IndexEntry
impl Serialize for IndexEntry
impl StructuralPartialEq for IndexEntry
Auto Trait Implementations§
impl Freeze for IndexEntry
impl RefUnwindSafe for IndexEntry
impl Send for IndexEntry
impl Sync for IndexEntry
impl Unpin for IndexEntry
impl UnsafeUnpin for IndexEntry
impl UnwindSafe for IndexEntry
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