pub enum RecordType {
Some(Record),
Error(Vec<u8>),
StreamClose,
}Expand description
The record type when reading it from the stream
Values
Some(Record)- Some FastCGI value.Error(Vec<u8>)- Error recognizing FastCGI record.StreamClose- The stream was closed.
Variants§
Some(Record)
Some FastCGI value.
Error(Vec<u8>)
Error recognizing FastCGI record.
StreamClose
The stream was closed.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for RecordType
impl Send for RecordType
impl Sync for RecordType
impl Unpin for RecordType
impl UnwindSafe for RecordType
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