#[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 (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 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<FolderCompletionEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FolderCompletionEvent, <__D as Deserializer<'de>>::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§fn eq(&self, other: &FolderCompletionEvent) -> bool
fn eq(&self, other: &FolderCompletionEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FolderCompletionEvent
impl Serialize for FolderCompletionEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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 UnsafeUnpin 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