#[non_exhaustive]pub struct FolderCompletionEvent {
pub device_id: String,
pub folder_id: String,
pub completion: f64,
pub global_bytes: u64,
pub need_bytes: u64,
pub need_deletes: u64,
pub need_items: u64,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.device_id: String§folder_id: String§completion: f64§global_bytes: u64§need_bytes: u64§need_deletes: u64§need_items: u64Trait Implementations§
Source§impl Clone for FolderCompletionEvent
impl Clone for FolderCompletionEvent
Source§fn clone(&self) -> FolderCompletionEvent
fn clone(&self) -> FolderCompletionEvent
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 FolderCompletionEvent
impl Debug for FolderCompletionEvent
Source§impl<'de> Deserialize<'de> for FolderCompletionEvent
impl<'de> Deserialize<'de> for FolderCompletionEvent
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
Source§impl PartialEq for FolderCompletionEvent
impl PartialEq for FolderCompletionEvent
Source§impl Serialize for FolderCompletionEvent
impl Serialize for FolderCompletionEvent
impl StructuralPartialEq for FolderCompletionEvent
Auto Trait Implementations§
impl Freeze for FolderCompletionEvent
impl RefUnwindSafe for FolderCompletionEvent
impl Send for FolderCompletionEvent
impl Sync for FolderCompletionEvent
impl Unpin for FolderCompletionEvent
impl UnwindSafe for FolderCompletionEvent
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