pub struct JobQueue {
pub job_type: Option<String>,
pub count: Option<i32>,
pub latency: Option<i32>,
pub paused: Option<bool>,
}Expand description
JobQueue : the job queue info
Fields§
§job_type: Option<String>The type of the job queue
count: Option<i32>The count of jobs in the job queue
latency: Option<i32>The latency the job queue (seconds)
paused: Option<bool>The paused status of the job queue
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobQueue
impl<'de> Deserialize<'de> for JobQueue
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
impl StructuralPartialEq for JobQueue
Auto Trait Implementations§
impl Freeze for JobQueue
impl RefUnwindSafe for JobQueue
impl Send for JobQueue
impl Sync for JobQueue
impl Unpin for JobQueue
impl UnwindSafe for JobQueue
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