pub struct UpgradeOutcome {
pub lines: Vec<String>,
pub failures: usize,
}Expand description
What an upgrade did.
Fields§
§lines: Vec<String>Every line to print, in order.
failures: usizeHow many lines are conflicts or failures.
Trait Implementations§
Source§impl Debug for UpgradeOutcome
impl Debug for UpgradeOutcome
Source§impl Default for UpgradeOutcome
impl Default for UpgradeOutcome
Source§fn default() -> UpgradeOutcome
fn default() -> UpgradeOutcome
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UpgradeOutcome
impl RefUnwindSafe for UpgradeOutcome
impl Send for UpgradeOutcome
impl Sync for UpgradeOutcome
impl Unpin for UpgradeOutcome
impl UnsafeUnpin for UpgradeOutcome
impl UnwindSafe for UpgradeOutcome
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