pub struct UnpinResult {
pub store_id: String,
pub unpinned: bool,
pub evicted_capsules: u64,
}Expand description
control.hostedStores.unpin — the unpin acknowledgement + eviction count.
Fields§
§store_id: StringThe store id that was unpinned.
unpinned: boolWhether a pin registry entry was actually removed.
evicted_capsules: u64How many cached capsules of the store were evicted.
Trait Implementations§
Source§impl Clone for UnpinResult
impl Clone for UnpinResult
Source§fn clone(&self) -> UnpinResult
fn clone(&self) -> UnpinResult
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 UnpinResult
impl Debug for UnpinResult
Source§impl<'de> Deserialize<'de> for UnpinResult
impl<'de> Deserialize<'de> for UnpinResult
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 UnpinResult
Source§impl PartialEq for UnpinResult
impl PartialEq for UnpinResult
Source§impl Serialize for UnpinResult
impl Serialize for UnpinResult
impl StructuralPartialEq for UnpinResult
Auto Trait Implementations§
impl Freeze for UnpinResult
impl RefUnwindSafe for UnpinResult
impl Send for UnpinResult
impl Sync for UnpinResult
impl Unpin for UnpinResult
impl UnsafeUnpin for UnpinResult
impl UnwindSafe for UnpinResult
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