pub enum Content {
Stdout(Bytes),
Stderr(Bytes),
}
Expand description
Content type from a FastCGI response stream.
This enum represents the different types of content that can be received from a FastCGI server during streaming.
Variants§
Stdout(Bytes)
Standard output content from the FastCGI server
Stderr(Bytes)
Standard error content from the FastCGI server
Auto Trait Implementations§
impl !Freeze for Content
impl RefUnwindSafe for Content
impl Send for Content
impl Sync for Content
impl Unpin for Content
impl UnwindSafe for Content
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