pub struct ChangeStreamConfig {
pub max_buffer_size: usize,
pub enable_deduplication: bool,
pub broadcast_capacity: usize,
}Expand description
Change stream configuration
Fields§
§max_buffer_size: usizeMaximum buffer size
enable_deduplication: boolEnable change deduplication
broadcast_capacity: usizeBroadcast channel capacity
Trait Implementations§
Source§impl Clone for ChangeStreamConfig
impl Clone for ChangeStreamConfig
Source§fn clone(&self) -> ChangeStreamConfig
fn clone(&self) -> ChangeStreamConfig
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 ChangeStreamConfig
impl Debug for ChangeStreamConfig
Auto Trait Implementations§
impl Freeze for ChangeStreamConfig
impl RefUnwindSafe for ChangeStreamConfig
impl Send for ChangeStreamConfig
impl Sync for ChangeStreamConfig
impl Unpin for ChangeStreamConfig
impl UnsafeUnpin for ChangeStreamConfig
impl UnwindSafe for ChangeStreamConfig
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