pub struct SprintLoadWarning {
pub kind: SprintLoadWarningKind,
pub points: u32,
pub threshold: f64,
}Expand description
A non-blocking warning produced when a Sprint’s assigned points exceed a threshold.
Fields§
§kind: SprintLoadWarningKindWhich planning comparison was exceeded.
points: u32Sum of estimated points assigned to the Sprint.
threshold: f64Numeric threshold that the assigned points exceeded.
Trait Implementations§
Source§impl Clone for SprintLoadWarning
impl Clone for SprintLoadWarning
Source§fn clone(&self) -> SprintLoadWarning
fn clone(&self) -> SprintLoadWarning
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 SprintLoadWarning
impl Debug for SprintLoadWarning
Source§impl PartialEq for SprintLoadWarning
impl PartialEq for SprintLoadWarning
impl StructuralPartialEq for SprintLoadWarning
Auto Trait Implementations§
impl Freeze for SprintLoadWarning
impl RefUnwindSafe for SprintLoadWarning
impl Send for SprintLoadWarning
impl Sync for SprintLoadWarning
impl Unpin for SprintLoadWarning
impl UnsafeUnpin for SprintLoadWarning
impl UnwindSafe for SprintLoadWarning
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