pub struct ClientData {
pub comment: Option<String>,
pub upload_end: Option<String>,
pub upload_size: Option<f64>,
pub upload_start: Option<String>,
}
Expand description
Describes the client-specific data.
Fields§
§comment: Option<String>
A user-defined comment about the disk upload.
upload_end: Option<String>
The time that the disk upload ends.
upload_size: Option<f64>
The size of the uploaded disk image, in GiB.
upload_start: Option<String>
The time that the disk upload starts.
Trait Implementations§
Source§impl Clone for ClientData
impl Clone for ClientData
Source§fn clone(&self) -> ClientData
fn clone(&self) -> ClientData
Returns a copy 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 ClientData
impl Debug for ClientData
Source§impl Default for ClientData
impl Default for ClientData
Source§fn default() -> ClientData
fn default() -> ClientData
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClientData
impl PartialEq for ClientData
impl StructuralPartialEq for ClientData
Auto Trait Implementations§
impl Freeze for ClientData
impl RefUnwindSafe for ClientData
impl Send for ClientData
impl Sync for ClientData
impl Unpin for ClientData
impl UnwindSafe for ClientData
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