pub struct JoinConfig {
pub join_type: JoinType,
pub max_buffer_size: usize,
pub ttl_seconds: i64,
pub enable_cleanup: bool,
}Expand description
Configuration for join operations.
Fields§
§join_type: JoinTypeType of join
max_buffer_size: usizeMaximum buffer size per key
ttl_seconds: i64Time-to-live for buffered elements (in seconds)
enable_cleanup: boolEnable cleanup of expired elements
Trait Implementations§
Source§impl Clone for JoinConfig
impl Clone for JoinConfig
Source§fn clone(&self) -> JoinConfig
fn clone(&self) -> JoinConfig
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 JoinConfig
impl Debug for JoinConfig
Source§impl Default for JoinConfig
impl Default for JoinConfig
Source§impl<'de> Deserialize<'de> for JoinConfig
impl<'de> Deserialize<'de> for JoinConfig
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 JoinConfig
impl RefUnwindSafe for JoinConfig
impl Send for JoinConfig
impl Sync for JoinConfig
impl Unpin for JoinConfig
impl UnsafeUnpin for JoinConfig
impl UnwindSafe for JoinConfig
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