#[non_exhaustive]pub struct UpgradeInfo {
pub latest: String,
pub major_newer: bool,
pub newer: bool,
pub running: String,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.latest: String§major_newer: bool§newer: bool§running: StringTrait Implementations§
Source§impl Clone for UpgradeInfo
impl Clone for UpgradeInfo
Source§fn clone(&self) -> UpgradeInfo
fn clone(&self) -> UpgradeInfo
Returns a duplicate of the value. Read more
1.0.0 · 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 UpgradeInfo
impl Debug for UpgradeInfo
Source§impl<'de> Deserialize<'de> for UpgradeInfo
impl<'de> Deserialize<'de> for UpgradeInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for UpgradeInfo
impl PartialEq for UpgradeInfo
Source§impl Serialize for UpgradeInfo
impl Serialize for UpgradeInfo
impl StructuralPartialEq for UpgradeInfo
Auto Trait Implementations§
impl Freeze for UpgradeInfo
impl RefUnwindSafe for UpgradeInfo
impl Send for UpgradeInfo
impl Sync for UpgradeInfo
impl Unpin for UpgradeInfo
impl UnwindSafe for UpgradeInfo
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