pub struct QueueResult {
pub was_queued: bool,
pub messages_dropped: usize,
pub current_size: usize,
pub message_count: usize,
}Fields§
§was_queued: bool§messages_dropped: usize§current_size: usize§message_count: usizeTrait Implementations§
Source§impl Clone for QueueResult
impl Clone for QueueResult
Source§fn clone(&self) -> QueueResult
fn clone(&self) -> QueueResult
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 moreAuto Trait Implementations§
impl Freeze for QueueResult
impl RefUnwindSafe for QueueResult
impl Send for QueueResult
impl Sync for QueueResult
impl Unpin for QueueResult
impl UnwindSafe for QueueResult
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