pub struct DependencyOutcome {
pub item: BacklogItem,
pub cycle_warning: bool,
}Expand description
Result of add_dependency, including the updated PBI and any cycle warning.
Fields§
§item: BacklogItemPBI with the updated dependency list.
cycle_warning: boolWhether the new dependency creates a transitive cycle. Cycles are recorded but reported as warnings rather than errors.
Trait Implementations§
Source§impl Clone for DependencyOutcome
impl Clone for DependencyOutcome
Source§fn clone(&self) -> DependencyOutcome
fn clone(&self) -> DependencyOutcome
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 DependencyOutcome
impl Debug for DependencyOutcome
impl Eq for DependencyOutcome
Source§impl PartialEq for DependencyOutcome
impl PartialEq for DependencyOutcome
impl StructuralPartialEq for DependencyOutcome
Auto Trait Implementations§
impl Freeze for DependencyOutcome
impl RefUnwindSafe for DependencyOutcome
impl Send for DependencyOutcome
impl Sync for DependencyOutcome
impl Unpin for DependencyOutcome
impl UnsafeUnpin for DependencyOutcome
impl UnwindSafe for DependencyOutcome
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,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more