pub struct AppState {
pub fleet: Arc<dyn FleetProvider>,
pub admin: Option<Arc<dyn FleetAdmin>>,
pub store: Arc<dyn Store>,
pub bus: Arc<dyn EventBus>,
}Expand description
Shared application state handed to every handler. Backend-agnostic (#76):
the control plane is a FleetProvider, the workspace-registry plane an
optional FleetAdmin (None under k8s → those routes 405), and
observability (history/SSE) reads the shared Store/EventBus directly.
Fields§
§fleet: Arc<dyn FleetProvider>The fleet control plane (ensure/stop/restart/snapshot/readiness/metrics/
remove_agent/send_input). LocalFleet or K8sFleet.
admin: Option<Arc<dyn FleetAdmin>>The workspace-registry/config plane. Some for local; None for k8s.
store: Arc<dyn Store>Shared durable event store — agent history reads route here.
bus: Arc<dyn EventBus>Shared event bus — SSE subscribe routes here.
Trait Implementations§
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more