pub enum GlobalCmd {
ListTags(ListTagsMsg),
CreateTag(CreateTagMsg),
SetTag(SetTagMsg),
DeleteTags(DeleteTagsMsg),
RenameTag(RenameTagMsg),
DeleteBlobs(DeleteBlobsMsg),
ListBlobs(ListBlobsMsg),
BlobStatus(BlobStatusMsg),
SyncDb(SyncDbMsg),
Shutdown(ShutdownMsg),
}
Variants§
ListTags(ListTagsMsg)
CreateTag(CreateTagMsg)
SetTag(SetTagMsg)
DeleteTags(DeleteTagsMsg)
RenameTag(RenameTagMsg)
DeleteBlobs(DeleteBlobsMsg)
ListBlobs(ListBlobsMsg)
BlobStatus(BlobStatusMsg)
SyncDb(SyncDbMsg)
Shutdown(ShutdownMsg)
Trait Implementations§
Source§impl From<WithChannels<BlobDeleteRequest, Request>> for GlobalCmd
impl From<WithChannels<BlobDeleteRequest, Request>> for GlobalCmd
Source§impl From<WithChannels<CreateTagRequest, Request>> for GlobalCmd
impl From<WithChannels<CreateTagRequest, Request>> for GlobalCmd
Source§impl From<WithChannels<DeleteTagsRequest, Request>> for GlobalCmd
impl From<WithChannels<DeleteTagsRequest, Request>> for GlobalCmd
Source§impl From<WithChannels<ListTagsRequest, Request>> for GlobalCmd
impl From<WithChannels<ListTagsRequest, Request>> for GlobalCmd
Source§impl From<WithChannels<RenameTagRequest, Request>> for GlobalCmd
impl From<WithChannels<RenameTagRequest, Request>> for GlobalCmd
Source§impl From<WithChannels<SetTagRequest, Request>> for GlobalCmd
impl From<WithChannels<SetTagRequest, Request>> for GlobalCmd
Auto Trait Implementations§
impl !Freeze for GlobalCmd
impl !RefUnwindSafe for GlobalCmd
impl Send for GlobalCmd
impl Sync for GlobalCmd
impl Unpin for GlobalCmd
impl !UnwindSafe for GlobalCmd
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