pub enum KickJobResponse {
NotFound,
Kicked,
}Variants§
NotFound
If the job does not exist or is not in a kickable state. This can also happen upon internal errors.
Kicked
Indicate success
Trait Implementations§
Auto Trait Implementations§
impl Freeze for KickJobResponse
impl RefUnwindSafe for KickJobResponse
impl Send for KickJobResponse
impl Sync for KickJobResponse
impl Unpin for KickJobResponse
impl UnwindSafe for KickJobResponse
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