pub struct UpdateApplyReport {
pub success: bool,
pub from_version: Option<String>,
pub to_version: String,
pub bytes_downloaded: u64,
pub messages: Vec<String>,
}Expand description
Result of an apply-update call.
Fields§
§success: bool§from_version: Option<String>§to_version: String§bytes_downloaded: u64§messages: Vec<String>Trait Implementations§
Source§impl Clone for UpdateApplyReport
impl Clone for UpdateApplyReport
Source§fn clone(&self) -> UpdateApplyReport
fn clone(&self) -> UpdateApplyReport
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 UpdateApplyReport
impl Debug for UpdateApplyReport
Auto Trait Implementations§
impl Freeze for UpdateApplyReport
impl RefUnwindSafe for UpdateApplyReport
impl Send for UpdateApplyReport
impl Sync for UpdateApplyReport
impl Unpin for UpdateApplyReport
impl UnsafeUnpin for UpdateApplyReport
impl UnwindSafe for UpdateApplyReport
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