#[non_exhaustive]pub struct UnexpectedBufferError { /* private fields */ }
Expand description
Something went wrong while reading the request body, but we don’t know what specifically.
Trait Implementations§
source§impl Debug for UnexpectedBufferError
impl Debug for UnexpectedBufferError
source§impl Display for UnexpectedBufferError
impl Display for UnexpectedBufferError
source§impl Error for UnexpectedBufferError
impl Error for UnexpectedBufferError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<UnexpectedBufferError> for ExtractBufferedBodyError
impl From<UnexpectedBufferError> for ExtractBufferedBodyError
source§fn from(source: UnexpectedBufferError) -> Self
fn from(source: UnexpectedBufferError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UnexpectedBufferError
impl !RefUnwindSafe for UnexpectedBufferError
impl Send for UnexpectedBufferError
impl Sync for UnexpectedBufferError
impl Unpin for UnexpectedBufferError
impl !UnwindSafe for UnexpectedBufferError
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