pub enum BackendCommand {
Publish(String, PublishRequest, Sender<bool>),
Yank(String, YankRequest, Sender<bool>),
IsVersionPublished(String, String, String, Sender<bool>),
}Variants§
Publish(String, PublishRequest, Sender<bool>)
Yank(String, YankRequest, Sender<bool>)
IsVersionPublished(String, String, String, Sender<bool>)
Auto Trait Implementations§
impl !RefUnwindSafe for BackendCommand
impl !UnwindSafe for BackendCommand
impl Freeze for BackendCommand
impl Send for BackendCommand
impl Sync for BackendCommand
impl Unpin for BackendCommand
impl UnsafeUnpin for BackendCommand
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