pub enum SprintCloseAction {
Retain,
Rollover(SprintId),
Release,
}Expand description
How unfinished PBIs are handled when their sprint closes.
Variants§
Retain
Keep unfinished PBIs assigned to the closed sprint.
Rollover(SprintId)
Reassign unfinished PBIs to a planned or active sprint.
Release
Clear the sprint assignment from unfinished PBIs.
Trait Implementations§
Source§impl Clone for SprintCloseAction
impl Clone for SprintCloseAction
Source§fn clone(&self) -> SprintCloseAction
fn clone(&self) -> SprintCloseAction
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 SprintCloseAction
impl Debug for SprintCloseAction
Source§impl Default for SprintCloseAction
impl Default for SprintCloseAction
Source§fn default() -> SprintCloseAction
fn default() -> SprintCloseAction
Returns the “default value” for a type. Read more
impl Eq for SprintCloseAction
Source§impl PartialEq for SprintCloseAction
impl PartialEq for SprintCloseAction
impl StructuralPartialEq for SprintCloseAction
Auto Trait Implementations§
impl Freeze for SprintCloseAction
impl RefUnwindSafe for SprintCloseAction
impl Send for SprintCloseAction
impl Sync for SprintCloseAction
impl Unpin for SprintCloseAction
impl UnsafeUnpin for SprintCloseAction
impl UnwindSafe for SprintCloseAction
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