pub struct ManagerConfig {
pub executor: ExecutorConfig,
pub route_cache_max_entries: usize,
}Expand description
Configuration for the PluginManager.
Fields§
§executor: ExecutorConfigExecutor configuration (timeout, short-circuit behavior).
route_cache_max_entries: usizeMaximum number of entries in the routing cache. When the cache
reaches this size, further inserts are rejected (with a one-shot
warn log) and resolutions fall back to the slow path. See
PluginSettings::route_cache_max_entries for the YAML surface.
Trait Implementations§
Source§impl Clone for ManagerConfig
impl Clone for ManagerConfig
Source§fn clone(&self) -> ManagerConfig
fn clone(&self) -> ManagerConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ManagerConfig
impl Debug for ManagerConfig
Auto Trait Implementations§
impl Freeze for ManagerConfig
impl RefUnwindSafe for ManagerConfig
impl Send for ManagerConfig
impl Sync for ManagerConfig
impl Unpin for ManagerConfig
impl UnsafeUnpin for ManagerConfig
impl UnwindSafe for ManagerConfig
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