pub enum WasmStoreAdminCommand {
PublishCurrentReleaseToStore {
store_pid: Principal,
},
PublishCurrentReleaseToCurrentStore,
SetPublicationBinding {
binding: WasmStoreBinding,
},
ClearPublicationBinding,
RetireDetachedBinding,
PrepareRetiredStoreGc,
BeginRetiredStoreGc,
CompleteRetiredStoreGc,
FinalizeRetiredBinding,
DeleteFinalizedStore {
binding: WasmStoreBinding,
store_pid: Principal,
},
}Expand description
WasmStoreAdminCommand
Variants§
PublishCurrentReleaseToStore
PublishCurrentReleaseToCurrentStore
SetPublicationBinding
Fields
§
binding: WasmStoreBindingClearPublicationBinding
RetireDetachedBinding
PrepareRetiredStoreGc
BeginRetiredStoreGc
CompleteRetiredStoreGc
FinalizeRetiredBinding
DeleteFinalizedStore
Trait Implementations§
Source§impl CandidType for WasmStoreAdminCommand
impl CandidType for WasmStoreAdminCommand
Source§impl Clone for WasmStoreAdminCommand
impl Clone for WasmStoreAdminCommand
Source§fn clone(&self) -> WasmStoreAdminCommand
fn clone(&self) -> WasmStoreAdminCommand
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 WasmStoreAdminCommand
impl Debug for WasmStoreAdminCommand
Source§impl<'de> Deserialize<'de> for WasmStoreAdminCommand
impl<'de> Deserialize<'de> for WasmStoreAdminCommand
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 WasmStoreAdminCommand
impl PartialEq for WasmStoreAdminCommand
impl Eq for WasmStoreAdminCommand
impl StructuralPartialEq for WasmStoreAdminCommand
Auto Trait Implementations§
impl Freeze for WasmStoreAdminCommand
impl RefUnwindSafe for WasmStoreAdminCommand
impl Send for WasmStoreAdminCommand
impl Sync for WasmStoreAdminCommand
impl Unpin for WasmStoreAdminCommand
impl UnsafeUnpin for WasmStoreAdminCommand
impl UnwindSafe for WasmStoreAdminCommand
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