pub struct FormDataReader {
pub stream: TcpStream,
pub boundary_end_bytes: Vec<u8>,
pub content_length: Option<usize>,
pub bytes_read: usize,
pub body_ended: bool,
/* private fields */
}
Fields§
§stream: TcpStream
§boundary_end_bytes: Vec<u8>
§content_length: Option<usize>
§bytes_read: usize
§body_ended: bool
Implementations§
Trait Implementations§
Source§impl StreamReader for FormDataReader
impl StreamReader for FormDataReader
Auto Trait Implementations§
impl Freeze for FormDataReader
impl RefUnwindSafe for FormDataReader
impl Send for FormDataReader
impl Sync for FormDataReader
impl Unpin for FormDataReader
impl UnwindSafe for FormDataReader
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