pub enum RuntimeQuery {
GetRouteStatus {
route_id: String,
},
InFlightCount {
route_id: String,
},
ListRoutes,
}Variants§
GetRouteStatus
InFlightCount
Note: This variant is intercepted by RuntimeBus::ask before reaching
execute_query. Do not handle it in execute_query — it has no access to
the in-flight counter. See runtime_bus.rs for the intercept.
ListRoutes
Trait Implementations§
Source§impl Clone for RuntimeQuery
impl Clone for RuntimeQuery
Source§fn clone(&self) -> RuntimeQuery
fn clone(&self) -> RuntimeQuery
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 RuntimeQuery
impl Debug for RuntimeQuery
Source§impl PartialEq for RuntimeQuery
impl PartialEq for RuntimeQuery
impl Eq for RuntimeQuery
impl StructuralPartialEq for RuntimeQuery
Auto Trait Implementations§
impl Freeze for RuntimeQuery
impl RefUnwindSafe for RuntimeQuery
impl Send for RuntimeQuery
impl Sync for RuntimeQuery
impl Unpin for RuntimeQuery
impl UnsafeUnpin for RuntimeQuery
impl UnwindSafe for RuntimeQuery
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