pub struct RegistryConfig {
pub max_handlers_per_type: usize,
pub enable_metrics: bool,
pub enable_validation: bool,
pub handler_timeout_ms: u64,
pub enable_hot_reload: bool,
pub event_listeners: Vec<String>,
}
Expand description
Registry configuration
Fields§
§max_handlers_per_type: usize
Maximum number of handlers per type
enable_metrics: bool
Enable handler metrics
enable_validation: bool
Enable handler validation
handler_timeout_ms: u64
Handler timeout in milliseconds
enable_hot_reload: bool
Enable hot reloading
event_listeners: Vec<String>
Registry event listeners
Trait Implementations§
Source§impl Clone for RegistryConfig
impl Clone for RegistryConfig
Source§fn clone(&self) -> RegistryConfig
fn clone(&self) -> RegistryConfig
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 RegistryConfig
impl Debug for RegistryConfig
Auto Trait Implementations§
impl Freeze for RegistryConfig
impl RefUnwindSafe for RegistryConfig
impl Send for RegistryConfig
impl Sync for RegistryConfig
impl Unpin for RegistryConfig
impl UnwindSafe for RegistryConfig
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