pub struct WasmStoreStatusResponse {
pub gc: WasmStoreGcStatusResponse,
pub occupied_store_bytes: u64,
pub max_store_bytes: u64,
pub remaining_store_bytes: u64,
pub headroom_bytes: Option<u64>,
pub within_headroom: bool,
pub template_count: u32,
pub max_templates: Option<u32>,
pub release_count: u32,
pub max_template_versions_per_template: Option<u16>,
pub templates: Vec<WasmStoreTemplateStatusResponse>,
}Expand description
WasmStoreStatusResponse
Fields§
§gc: WasmStoreGcStatusResponse§occupied_store_bytes: u64§max_store_bytes: u64§remaining_store_bytes: u64§headroom_bytes: Option<u64>§within_headroom: bool§template_count: u32§max_templates: Option<u32>§release_count: u32§max_template_versions_per_template: Option<u16>§templates: Vec<WasmStoreTemplateStatusResponse>Trait Implementations§
Source§impl CandidType for WasmStoreStatusResponse
impl CandidType for WasmStoreStatusResponse
Source§impl Clone for WasmStoreStatusResponse
impl Clone for WasmStoreStatusResponse
Source§fn clone(&self) -> WasmStoreStatusResponse
fn clone(&self) -> WasmStoreStatusResponse
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 Debug for WasmStoreStatusResponse
impl Debug for WasmStoreStatusResponse
Source§impl<'de> Deserialize<'de> for WasmStoreStatusResponse
impl<'de> Deserialize<'de> for WasmStoreStatusResponse
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 WasmStoreStatusResponse
impl PartialEq for WasmStoreStatusResponse
impl Eq for WasmStoreStatusResponse
impl StructuralPartialEq for WasmStoreStatusResponse
Auto Trait Implementations§
impl Freeze for WasmStoreStatusResponse
impl RefUnwindSafe for WasmStoreStatusResponse
impl Send for WasmStoreStatusResponse
impl Sync for WasmStoreStatusResponse
impl Unpin for WasmStoreStatusResponse
impl UnsafeUnpin for WasmStoreStatusResponse
impl UnwindSafe for WasmStoreStatusResponse
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