pub struct ProcessorConfig {
pub enable_signature_validation: bool,
pub enable_session_correlation: bool,
pub session_id_strategy: SessionIdStrategy,
pub max_payload_size: usize,
pub trace_sampling_rate: f64,
}Expand description
Event processor configuration.
Controls how webhook events are processed, validated, and normalized.
Fields§
§enable_signature_validation: boolEnable webhook signature validation
enable_session_correlation: boolEnable session correlation for ordered processing
session_id_strategy: SessionIdStrategyStrategy for generating session IDs
max_payload_size: usizeMaximum allowed payload size in bytes
trace_sampling_rate: f64Trace sampling rate (0.0 to 1.0)
Trait Implementations§
Source§impl Clone for ProcessorConfig
impl Clone for ProcessorConfig
Source§fn clone(&self) -> ProcessorConfig
fn clone(&self) -> ProcessorConfig
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 ProcessorConfig
impl Debug for ProcessorConfig
Auto Trait Implementations§
impl Freeze for ProcessorConfig
impl RefUnwindSafe for ProcessorConfig
impl Send for ProcessorConfig
impl Sync for ProcessorConfig
impl Unpin for ProcessorConfig
impl UnsafeUnpin for ProcessorConfig
impl UnwindSafe for ProcessorConfig
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