pub struct WeakJoinMiddleware {
pub group_by: String,
pub expected_count: usize,
pub timeout_ms: u64,
}Fields§
§group_by: StringThe metadata key to group messages by (e.g., “correlation_id”).
expected_count: usizeThe number of messages to wait for.
timeout_ms: u64Timeout in milliseconds.
Trait Implementations§
Source§impl Clone for WeakJoinMiddleware
impl Clone for WeakJoinMiddleware
Source§fn clone(&self) -> WeakJoinMiddleware
fn clone(&self) -> WeakJoinMiddleware
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 moreSource§impl Debug for WeakJoinMiddleware
impl Debug for WeakJoinMiddleware
Source§impl<'de> Deserialize<'de> for WeakJoinMiddleware
impl<'de> Deserialize<'de> for WeakJoinMiddleware
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 WeakJoinMiddleware
impl RefUnwindSafe for WeakJoinMiddleware
impl Send for WeakJoinMiddleware
impl Sync for WeakJoinMiddleware
impl Unpin for WeakJoinMiddleware
impl UnwindSafe for WeakJoinMiddleware
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