#[repr(u8)]pub enum RequestType {
BeginRequest = 1,
AbortRequest = 2,
EndRequest = 3,
Params = 4,
Stdin = 5,
Stdout = 6,
Stderr = 7,
Data = 8,
GetValues = 9,
GetValuesResult = 10,
UnknownType = 11,
}Expand description
FastCGI request types as defined in the protocol specification.
Variants§
BeginRequest = 1
Begin request record type
AbortRequest = 2
Abort request record type
EndRequest = 3
End request record type
Params = 4
Parameters record type
Stdin = 5
Stdin record type
Stdout = 6
Stdout record type
Stderr = 7
Stderr record type
Data = 8
Data record type
GetValues = 9
Get values record type
GetValuesResult = 10
Get values result record type
UnknownType = 11
Unknown type record type
Trait Implementations§
Source§impl Clone for RequestType
impl Clone for RequestType
Source§fn clone(&self) -> RequestType
fn clone(&self) -> RequestType
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 RequestType
impl Debug for RequestType
Source§impl Display for RequestType
impl Display for RequestType
impl Copy for RequestType
Auto Trait Implementations§
impl Freeze for RequestType
impl RefUnwindSafe for RequestType
impl Send for RequestType
impl Sync for RequestType
impl Unpin for RequestType
impl UnwindSafe for RequestType
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