pub struct WasmStoreCatalogEntryResponse {
pub role: CanisterRole,
pub template_id: TemplateId,
pub version: TemplateVersion,
pub payload_hash: Vec<u8>,
pub payload_size_bytes: u64,
}Expand description
WasmStoreCatalogEntryResponse
Fields§
§role: CanisterRole§template_id: TemplateId§version: TemplateVersion§payload_hash: Vec<u8>§payload_size_bytes: u64Trait Implementations§
Source§impl Clone for WasmStoreCatalogEntryResponse
impl Clone for WasmStoreCatalogEntryResponse
Source§fn clone(&self) -> WasmStoreCatalogEntryResponse
fn clone(&self) -> WasmStoreCatalogEntryResponse
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 WasmStoreCatalogEntryResponse
impl<'de> Deserialize<'de> for WasmStoreCatalogEntryResponse
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 WasmStoreCatalogEntryResponse
impl PartialEq for WasmStoreCatalogEntryResponse
Source§fn eq(&self, other: &WasmStoreCatalogEntryResponse) -> bool
fn eq(&self, other: &WasmStoreCatalogEntryResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WasmStoreCatalogEntryResponse
impl StructuralPartialEq for WasmStoreCatalogEntryResponse
Auto Trait Implementations§
impl Freeze for WasmStoreCatalogEntryResponse
impl RefUnwindSafe for WasmStoreCatalogEntryResponse
impl Send for WasmStoreCatalogEntryResponse
impl Sync for WasmStoreCatalogEntryResponse
impl Unpin for WasmStoreCatalogEntryResponse
impl UnsafeUnpin for WasmStoreCatalogEntryResponse
impl UnwindSafe for WasmStoreCatalogEntryResponse
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