pub struct Item {Show 20 fields
pub id: String,
pub title: String,
pub item_type: ItemType,
pub status: Status,
pub priority: Priority,
pub parent: Option<String>,
pub assignees: Vec<Assignee>,
pub deps: Vec<String>,
pub milestone: Option<String>,
pub tags: Vec<String>,
pub capabilities: Vec<Capability>,
pub mode: Option<InteractionLevel>,
pub effort: Option<u8>,
pub version: Option<String>,
pub created_by: Option<String>,
pub created: DateTime<Utc>,
pub updated: DateTime<Utc>,
pub description: Option<String>,
pub crypt_zone: Option<String>,
pub comments: Vec<Comment>,
}Fields§
§id: String§title: String§item_type: ItemType§status: Status§priority: Priority§parent: Option<String>§assignees: Vec<Assignee>§deps: Vec<String>§milestone: Option<String>§capabilities: Vec<Capability>§mode: Option<InteractionLevel>§effort: Option<u8>§version: Option<String>§created_by: Option<String>§created: DateTime<Utc>§updated: DateTime<Utc>§description: Option<String>§crypt_zone: Option<String>Name of the Crypt zone this item belongs to. Absent or null
means the item is plaintext. The zone must be declared in the
project’s crypt.zones registry. See ADR-038 and Crypt.md.
comments: Vec<Comment>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Item
impl<'de> Deserialize<'de> for Item
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 StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnsafeUnpin for Item
impl UnwindSafe for Item
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