pub struct Reason {
pub what: &'static str,
pub value: String,
pub because: String,
}Expand description
One line of the answer to “why is this issue here?”.
Fields§
§what: &'static strWhat is being explained: score, priority, pinned.
value: StringThe value as the row carries it.
because: StringWhere it comes from and what it does to the order.
Trait Implementations§
impl StructuralPartialEq for Reason
Auto Trait Implementations§
impl Freeze for Reason
impl RefUnwindSafe for Reason
impl Send for Reason
impl Sync for Reason
impl Unpin for Reason
impl UnsafeUnpin for Reason
impl UnwindSafe for Reason
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