pub enum SplitRelationship {
None,
Child,
Dependency,
}Expand description
How each new PBI relates to the source item.
Variants§
None
The new PBIs are independent of the source.
Child
The source becomes the parent of each new PBI.
Dependency
The source depends on each new PBI (each new PBI must be completed first).
Trait Implementations§
Source§impl Clone for SplitRelationship
impl Clone for SplitRelationship
Source§fn clone(&self) -> SplitRelationship
fn clone(&self) -> SplitRelationship
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 moreimpl Copy for SplitRelationship
Source§impl Debug for SplitRelationship
impl Debug for SplitRelationship
Source§impl Default for SplitRelationship
impl Default for SplitRelationship
Source§fn default() -> SplitRelationship
fn default() -> SplitRelationship
Returns the “default value” for a type. Read more
impl Eq for SplitRelationship
Source§impl PartialEq for SplitRelationship
impl PartialEq for SplitRelationship
impl StructuralPartialEq for SplitRelationship
Auto Trait Implementations§
impl Freeze for SplitRelationship
impl RefUnwindSafe for SplitRelationship
impl Send for SplitRelationship
impl Sync for SplitRelationship
impl Unpin for SplitRelationship
impl UnsafeUnpin for SplitRelationship
impl UnwindSafe for SplitRelationship
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