pub enum JobBrokerStatus {
WaitingForLayers,
WaitingForWorker,
AtWorker(WorkerId, JobWorkerStatus),
}Variants§
Trait Implementations§
Source§impl Clone for JobBrokerStatus
impl Clone for JobBrokerStatus
Source§fn clone(&self) -> JobBrokerStatus
fn clone(&self) -> JobBrokerStatus
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 JobBrokerStatus
impl Debug for JobBrokerStatus
Source§impl<'de> Deserialize<'de> for JobBrokerStatus
impl<'de> Deserialize<'de> for JobBrokerStatus
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 Ord for JobBrokerStatus
impl Ord for JobBrokerStatus
Source§fn cmp(&self, other: &JobBrokerStatus) -> Ordering
fn cmp(&self, other: &JobBrokerStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for JobBrokerStatus
impl PartialEq for JobBrokerStatus
Source§impl PartialOrd for JobBrokerStatus
impl PartialOrd for JobBrokerStatus
Source§impl Serialize for JobBrokerStatus
impl Serialize for JobBrokerStatus
impl Eq for JobBrokerStatus
impl StructuralPartialEq for JobBrokerStatus
Auto Trait Implementations§
impl Freeze for JobBrokerStatus
impl RefUnwindSafe for JobBrokerStatus
impl Send for JobBrokerStatus
impl Sync for JobBrokerStatus
impl Unpin for JobBrokerStatus
impl UnwindSafe for JobBrokerStatus
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