pub struct LocationSummary {
pub present: usize,
pub pending: usize,
pub syncing: usize,
pub failed: usize,
pub absent: usize,
}Expand description
Per-location count of files by state.
Fields§
§present: usize§pending: usize§syncing: usize§failed: usize§absent: usizeImplementations§
Trait Implementations§
Source§impl Clone for LocationSummary
impl Clone for LocationSummary
Source§fn clone(&self) -> LocationSummary
fn clone(&self) -> LocationSummary
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 LocationSummary
impl Debug for LocationSummary
Source§impl Default for LocationSummary
impl Default for LocationSummary
Source§fn default() -> LocationSummary
fn default() -> LocationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LocationSummary
impl<'de> Deserialize<'de> for LocationSummary
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
Auto Trait Implementations§
impl Freeze for LocationSummary
impl RefUnwindSafe for LocationSummary
impl Send for LocationSummary
impl Sync for LocationSummary
impl Unpin for LocationSummary
impl UnsafeUnpin for LocationSummary
impl UnwindSafe for LocationSummary
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