pub struct HostedStoreStatusResult {
pub store_id: String,
pub pinned: bool,
pub capsule_count: u64,
pub total_bytes: u64,
pub capsules: Vec<CapsuleEntry>,
}Expand description
control.hostedStores.status — per-store pinned flag + cached capsules.
Fields§
§store_id: StringThe store id queried.
pinned: boolWhether the store is pinned.
capsule_count: u64The number of cached capsules.
total_bytes: u64The total cached bytes.
capsules: Vec<CapsuleEntry>The cached capsules.
Trait Implementations§
Source§impl Clone for HostedStoreStatusResult
impl Clone for HostedStoreStatusResult
Source§fn clone(&self) -> HostedStoreStatusResult
fn clone(&self) -> HostedStoreStatusResult
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 HostedStoreStatusResult
impl Debug for HostedStoreStatusResult
Source§impl<'de> Deserialize<'de> for HostedStoreStatusResult
impl<'de> Deserialize<'de> for HostedStoreStatusResult
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 HostedStoreStatusResult
Source§impl PartialEq for HostedStoreStatusResult
impl PartialEq for HostedStoreStatusResult
Source§impl Serialize for HostedStoreStatusResult
impl Serialize for HostedStoreStatusResult
impl StructuralPartialEq for HostedStoreStatusResult
Auto Trait Implementations§
impl Freeze for HostedStoreStatusResult
impl RefUnwindSafe for HostedStoreStatusResult
impl Send for HostedStoreStatusResult
impl Sync for HostedStoreStatusResult
impl Unpin for HostedStoreStatusResult
impl UnsafeUnpin for HostedStoreStatusResult
impl UnwindSafe for HostedStoreStatusResult
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