pub struct AppState {
pub config: RwLock<Config>,
pub ws_registry: WsRegistry,
pub manager: Arc<CredentialManager>,
pub adapter_manager: Arc<AdapterInstanceManager>,
pub backend_manager: Arc<ExternalBackendManager>,
pub skip_reload_until: RwLock<Option<Instant>>,
pub health_monitor: HealthMonitor,
pub file_cache: Option<Arc<FileCache>>,
pub guardrail_engine: RwLock<GuardrailEngine>,
}Fields§
§config: RwLock<Config>§ws_registry: WsRegistry§manager: Arc<CredentialManager>§adapter_manager: Arc<AdapterInstanceManager>§backend_manager: Arc<ExternalBackendManager>§skip_reload_until: RwLock<Option<Instant>>§health_monitor: HealthMonitor§file_cache: Option<Arc<FileCache>>§guardrail_engine: RwLock<GuardrailEngine>Auto Trait Implementations§
impl !Freeze for AppState
impl !RefUnwindSafe for AppState
impl Send for AppState
impl Sync for AppState
impl Unpin for AppState
impl UnsafeUnpin for AppState
impl !UnwindSafe for AppState
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