pub struct UpdateCheckReport {
pub current_version: Option<String>,
pub latest_version: String,
pub has_update: bool,
pub release_notes: Option<String>,
pub download_url: Option<String>,
pub asset_size: Option<u64>,
pub is_prerelease: bool,
}Expand description
Result of a check-for-updates call.
Fields§
§current_version: Option<String>§latest_version: String§has_update: bool§release_notes: Option<String>§download_url: Option<String>§asset_size: Option<u64>§is_prerelease: boolTrait Implementations§
Source§impl Clone for UpdateCheckReport
impl Clone for UpdateCheckReport
Source§fn clone(&self) -> UpdateCheckReport
fn clone(&self) -> UpdateCheckReport
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 UpdateCheckReport
impl Debug for UpdateCheckReport
Auto Trait Implementations§
impl Freeze for UpdateCheckReport
impl RefUnwindSafe for UpdateCheckReport
impl Send for UpdateCheckReport
impl Sync for UpdateCheckReport
impl Unpin for UpdateCheckReport
impl UnsafeUnpin for UpdateCheckReport
impl UnwindSafe for UpdateCheckReport
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