pub struct BlockingDependency {
pub spec_id: String,
pub title: Option<String>,
pub status: SpecStatus,
pub completed_at: Option<String>,
pub is_sibling: bool,
}Expand description
Represents a dependency that is blocking a spec from being ready.
Fields§
§spec_id: StringThe spec ID of the blocking dependency.
title: Option<String>The title of the blocking dependency, if available.
status: SpecStatusThe current status of the blocking dependency.
completed_at: Option<String>When the dependency was completed, if applicable.
is_sibling: boolWhether this is a sibling dependency (from group ordering).
Trait Implementations§
Source§impl Clone for BlockingDependency
impl Clone for BlockingDependency
Source§fn clone(&self) -> BlockingDependency
fn clone(&self) -> BlockingDependency
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 moreAuto Trait Implementations§
impl Freeze for BlockingDependency
impl RefUnwindSafe for BlockingDependency
impl Send for BlockingDependency
impl Sync for BlockingDependency
impl Unpin for BlockingDependency
impl UnwindSafe for BlockingDependency
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