pub struct UpdateAvailable {
pub slug: String,
pub current_version: String,
pub latest_version: String,
pub changelog: Option<String>,
}Expand description
Summary of an available update.
Fields§
§slug: String§current_version: String§latest_version: String§changelog: Option<String>Trait Implementations§
Source§impl Clone for UpdateAvailable
impl Clone for UpdateAvailable
Source§fn clone(&self) -> UpdateAvailable
fn clone(&self) -> UpdateAvailable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UpdateAvailable
impl Debug for UpdateAvailable
Auto Trait Implementations§
impl Freeze for UpdateAvailable
impl RefUnwindSafe for UpdateAvailable
impl Send for UpdateAvailable
impl Sync for UpdateAvailable
impl Unpin for UpdateAvailable
impl UnsafeUnpin for UpdateAvailable
impl UnwindSafe for UpdateAvailable
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