pub struct Job {
pub job_id: Uuid,
pub model_id: String,
pub request: Value,
pub format: WireFormat,
pub deadline_ms: u32,
}Expand description
A unit of work received from the coordinator.
Fields§
§job_id: Uuid§model_id: String§request: Value§format: WireFormat§deadline_ms: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Job
impl RefUnwindSafe for Job
impl Send for Job
impl Sync for Job
impl Unpin for Job
impl UnsafeUnpin for Job
impl UnwindSafe for Job
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