pub struct SyncStatusResult {
pub available: bool,
pub method: String,
pub pinned_total: u64,
pub pinned_synced: u64,
pub whole_store_trigger_supported: bool,
}Expand description
control.sync.status — §21 sync availability + pin coverage.
Fields§
§available: boolWhether authenticated §21 whole-store sync is available.
method: StringThe sync method name.
pinned_total: u64The number of pinned stores.
pinned_synced: u64How many pinned stores currently have a cached capsule.
whole_store_trigger_supported: boolWhether whole-store (root-less) sync is supported by this build.
Trait Implementations§
Source§impl Clone for SyncStatusResult
impl Clone for SyncStatusResult
Source§fn clone(&self) -> SyncStatusResult
fn clone(&self) -> SyncStatusResult
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 SyncStatusResult
impl Debug for SyncStatusResult
Source§impl<'de> Deserialize<'de> for SyncStatusResult
impl<'de> Deserialize<'de> for SyncStatusResult
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
impl Eq for SyncStatusResult
Source§impl PartialEq for SyncStatusResult
impl PartialEq for SyncStatusResult
Source§impl Serialize for SyncStatusResult
impl Serialize for SyncStatusResult
impl StructuralPartialEq for SyncStatusResult
Auto Trait Implementations§
impl Freeze for SyncStatusResult
impl RefUnwindSafe for SyncStatusResult
impl Send for SyncStatusResult
impl Sync for SyncStatusResult
impl Unpin for SyncStatusResult
impl UnsafeUnpin for SyncStatusResult
impl UnwindSafe for SyncStatusResult
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