pub enum SprintLoadWarningKind {
Capacity,
Velocity,
}Expand description
The source of a non-blocking Sprint load warning.
Variants§
Capacity
The assigned point total is above the configured capacity-hours threshold.
Velocity
The assigned point total is above the historical velocity threshold.
Implementations§
Trait Implementations§
Source§impl Clone for SprintLoadWarningKind
impl Clone for SprintLoadWarningKind
Source§fn clone(&self) -> SprintLoadWarningKind
fn clone(&self) -> SprintLoadWarningKind
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 SprintLoadWarningKind
Source§impl Debug for SprintLoadWarningKind
impl Debug for SprintLoadWarningKind
impl Eq for SprintLoadWarningKind
Source§impl PartialEq for SprintLoadWarningKind
impl PartialEq for SprintLoadWarningKind
impl StructuralPartialEq for SprintLoadWarningKind
Auto Trait Implementations§
impl Freeze for SprintLoadWarningKind
impl RefUnwindSafe for SprintLoadWarningKind
impl Send for SprintLoadWarningKind
impl Sync for SprintLoadWarningKind
impl Unpin for SprintLoadWarningKind
impl UnsafeUnpin for SprintLoadWarningKind
impl UnwindSafe for SprintLoadWarningKind
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