pub enum HealthState {
Detecting,
Ready,
Unavailable,
}Variants§
Detecting
Backends are still being probed. Anything capability-shaped in this response is provisional; hold the UI rather than rendering a verdict.
Ready
Model loaded, backends probed, ready to serve.
The port is bound (this response arrived) but the server cannot
serve generation. reason/detail say why.
Implementations§
Source§impl HealthState
impl HealthState
Sourcepub fn http_status(self) -> u16
pub fn http_status(self) -> u16
The HTTP status a server should answer with. detecting is a
200: the process is alive and the client is expected to poll,
and a 503 there would trip generic “backend down” logic in
proxies and supervisors. Only unavailable is a 503.
Trait Implementations§
Source§impl Clone for HealthState
impl Clone for HealthState
Source§fn clone(&self) -> HealthState
fn clone(&self) -> HealthState
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 moreimpl Copy for HealthState
Source§impl Debug for HealthState
impl Debug for HealthState
Source§impl<'de> Deserialize<'de> for HealthState
impl<'de> Deserialize<'de> for HealthState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HealthState
Source§impl PartialEq for HealthState
impl PartialEq for HealthState
Source§impl Serialize for HealthState
impl Serialize for HealthState
impl StructuralPartialEq for HealthState
Auto Trait Implementations§
impl Freeze for HealthState
impl RefUnwindSafe for HealthState
impl Send for HealthState
impl Sync for HealthState
impl Unpin for HealthState
impl UnsafeUnpin for HealthState
impl UnwindSafe for HealthState
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