pub struct UpgradeInfo {
pub name: String,
pub current_version: String,
pub new_version: String,
pub is_breaking: bool,
pub available_since: String,
}Expand description
Upgrade information
Fields§
§name: StringPlugin name
current_version: StringCurrent installed version
new_version: StringAvailable newer version
is_breaking: boolWhether this is a breaking change
available_since: StringAvailable as of this time
Implementations§
Trait 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
Auto Trait Implementations§
impl Freeze for UpgradeInfo
impl RefUnwindSafe for UpgradeInfo
impl Send for UpgradeInfo
impl Sync for UpgradeInfo
impl Unpin for UpgradeInfo
impl UnsafeUnpin 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