#[repr(u8)]pub enum ProtocolStatus {
RequestComplete = 0,
CantMpxConn = 1,
Overloaded = 2,
UnknownRole = 3,
}Expand description
FastCGI protocol status codes.
Variants§
RequestComplete = 0
Request completed successfully
CantMpxConn = 1
This app can’t multiplex connections
Overloaded = 2
New request rejected; too busy
UnknownRole = 3
Role value not known
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProtocolStatus
impl RefUnwindSafe for ProtocolStatus
impl Send for ProtocolStatus
impl Sync for ProtocolStatus
impl Unpin for ProtocolStatus
impl UnwindSafe for ProtocolStatus
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