pub enum ReleaseResponse {
Released,
Buried,
NotFound,
}Variants§
Released
Indicate success.
Buried
If the server ran out of memory trying to grow the priority queue data structure.
NotFound
If the job does not exist or is not reserved by the client.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReleaseResponse
impl RefUnwindSafe for ReleaseResponse
impl Send for ReleaseResponse
impl Sync for ReleaseResponse
impl Unpin for ReleaseResponse
impl UnwindSafe for ReleaseResponse
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