pub struct Change {
pub severity: Severity,
pub what: String,
pub detail: String,
pub because: &'static str,
}Expand description
One difference between two releases.
Fields§
§severity: Severity§what: StringWhat changed, by name.
detail: StringThe change, in one line.
because: &'static strWhy it is or is not safe, in the terms of the table above.
Trait Implementations§
impl Eq for Change
impl StructuralPartialEq for Change
Auto Trait Implementations§
impl Freeze for Change
impl RefUnwindSafe for Change
impl Send for Change
impl Sync for Change
impl Unpin for Change
impl UnwindSafe for Change
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