pub struct EnqueueRequest {
pub job_type: String,
pub queue: String,
pub payload: Vec<u8>,
pub max_retries: u32,
pub priority: i32,
pub scheduled_at: DateTime<Utc>,
}Fields§
§job_type: String§queue: String§payload: Vec<u8>§max_retries: u32§priority: i32§scheduled_at: DateTime<Utc>Auto Trait Implementations§
impl Freeze for EnqueueRequest
impl RefUnwindSafe for EnqueueRequest
impl Send for EnqueueRequest
impl Sync for EnqueueRequest
impl Unpin for EnqueueRequest
impl UnsafeUnpin for EnqueueRequest
impl UnwindSafe for EnqueueRequest
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