pub struct QueueLimits {
pub max_publish_batch: u32,
pub max_receive_batch: u32,
pub max_ack_batch: u32,
pub max_message_bytes: usize,
}Expand description
Configured transport bounds. These advertise capacities, not ordering, scheduling, deduplication, durability, or exactly-once execution promises.
Fields§
§max_publish_batch: u32§max_receive_batch: u32§max_ack_batch: u32§max_message_bytes: usizeImplementations§
Trait Implementations§
Source§impl Clone for QueueLimits
impl Clone for QueueLimits
impl Copy for QueueLimits
Source§impl Debug for QueueLimits
impl Debug for QueueLimits
impl Eq for QueueLimits
Source§impl PartialEq for QueueLimits
impl PartialEq for QueueLimits
impl StructuralPartialEq for QueueLimits
Auto Trait Implementations§
impl Freeze for QueueLimits
impl RefUnwindSafe for QueueLimits
impl Send for QueueLimits
impl Sync for QueueLimits
impl Unpin for QueueLimits
impl UnsafeUnpin for QueueLimits
impl UnwindSafe for QueueLimits
Blanket Implementations§
impl<T> ArtifactLease for T
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