pub struct RequestQueueHead {
pub limit: i64,
pub had_multiple_clients: bool,
pub items: Vec<RequestQueueRequest>,
pub extra: Extra,
}Expand description
The head of a request queue (requests waiting to be processed).
Fields§
§limit: i64Maximum number of requests returned.
had_multiple_clients: boolWhether more than one client has accessed the queue.
items: Vec<RequestQueueRequest>The requests at the head of the queue.
extra: ExtraAny other fields returned by the API.
Trait Implementations§
Source§impl Clone for RequestQueueHead
impl Clone for RequestQueueHead
Source§fn clone(&self) -> RequestQueueHead
fn clone(&self) -> RequestQueueHead
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RequestQueueHead
impl Debug for RequestQueueHead
Source§impl<'de> Deserialize<'de> for RequestQueueHead
impl<'de> Deserialize<'de> for RequestQueueHead
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
Auto Trait Implementations§
impl Freeze for RequestQueueHead
impl RefUnwindSafe for RequestQueueHead
impl Send for RequestQueueHead
impl Sync for RequestQueueHead
impl Unpin for RequestQueueHead
impl UnsafeUnpin for RequestQueueHead
impl UnwindSafe for RequestQueueHead
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