pub struct WasmStoreRetiredStoreStatusResponse {
pub retired_binding: WasmStoreBinding,
pub generation: u64,
pub retired_at: u64,
pub gc_ready: bool,
pub reclaimable_store_bytes: u64,
pub store: WasmStoreStatusResponse,
}Expand description
WasmStoreRetiredStoreStatusResponse
Fields§
§retired_binding: WasmStoreBinding§generation: u64§retired_at: u64§gc_ready: bool§reclaimable_store_bytes: u64§store: WasmStoreStatusResponseTrait Implementations§
Source§impl Clone for WasmStoreRetiredStoreStatusResponse
impl Clone for WasmStoreRetiredStoreStatusResponse
Source§fn clone(&self) -> WasmStoreRetiredStoreStatusResponse
fn clone(&self) -> WasmStoreRetiredStoreStatusResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for WasmStoreRetiredStoreStatusResponse
impl<'de> Deserialize<'de> for WasmStoreRetiredStoreStatusResponse
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
Source§impl PartialEq for WasmStoreRetiredStoreStatusResponse
impl PartialEq for WasmStoreRetiredStoreStatusResponse
Source§fn eq(&self, other: &WasmStoreRetiredStoreStatusResponse) -> bool
fn eq(&self, other: &WasmStoreRetiredStoreStatusResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WasmStoreRetiredStoreStatusResponse
impl StructuralPartialEq for WasmStoreRetiredStoreStatusResponse
Auto Trait Implementations§
impl Freeze for WasmStoreRetiredStoreStatusResponse
impl RefUnwindSafe for WasmStoreRetiredStoreStatusResponse
impl Send for WasmStoreRetiredStoreStatusResponse
impl Sync for WasmStoreRetiredStoreStatusResponse
impl Unpin for WasmStoreRetiredStoreStatusResponse
impl UnsafeUnpin for WasmStoreRetiredStoreStatusResponse
impl UnwindSafe for WasmStoreRetiredStoreStatusResponse
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