pub struct PendingItem {
pub marker: PendingListMarker,
pub id: String,
pub state: PendingState,
pub gate_type: Option<String>,
pub in_progress: bool,
pub text: String,
pub continuation: String,
}Expand description
A parsed pending list item.
Fields§
§marker: PendingListMarkerParent list marker. - is the default; ordered lists store the parsed
source ordinal and are renumbered canonically on render.
id: StringPending item id (no # prefix). Generated ids are lowercase base32; custom ids
and nested subtask ids may be hyphenated ASCII alphanumeric strings and are
normalized to lowercase.
state: PendingStateLifecycle state encoded by the GFM checkbox.
gate_type: Option<String>Optional typed gate (e.g., “release” for [/release], “deploy” for [/deploy]).
Only meaningful when state == Gated. None means untyped [/].
in_progress: boolVisible, ephemeral marker for the item currently being worked from an active queue head. Renders immediately after the checkbox.
text: StringBullet text after the hash prefix.
continuation: StringRaw indented continuation lines that belong to this item (for nested lists, dependency notes, etc.). Stored without the leading item line.
Implementations§
Trait Implementations§
Source§impl Clone for PendingItem
impl Clone for PendingItem
Source§fn clone(&self) -> PendingItem
fn clone(&self) -> PendingItem
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for PendingItem
impl Debug for PendingItem
impl Eq for PendingItem
Source§impl PartialEq for PendingItem
impl PartialEq for PendingItem
impl StructuralPartialEq for PendingItem
Auto Trait Implementations§
impl Freeze for PendingItem
impl RefUnwindSafe for PendingItem
impl Send for PendingItem
impl Sync for PendingItem
impl Unpin for PendingItem
impl UnsafeUnpin for PendingItem
impl UnwindSafe for PendingItem
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
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
key and return true if they are equal.