pub struct PayloadTooLargeError;Expand description
Error indicating that a parsed field exceeded the maximum allowed buffer size.
Trait Implementations§
Source§impl Clone for PayloadTooLargeError
impl Clone for PayloadTooLargeError
Source§fn clone(&self) -> PayloadTooLargeError
fn clone(&self) -> PayloadTooLargeError
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 PayloadTooLargeError
impl Debug for PayloadTooLargeError
Source§impl Default for PayloadTooLargeError
impl Default for PayloadTooLargeError
Source§fn default() -> PayloadTooLargeError
fn default() -> PayloadTooLargeError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PayloadTooLargeError
impl<'de> Deserialize<'de> for PayloadTooLargeError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PayloadTooLargeError
impl Display for PayloadTooLargeError
Source§impl Error for PayloadTooLargeError
impl Error for PayloadTooLargeError
1.30.0 · 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 Hash for PayloadTooLargeError
impl Hash for PayloadTooLargeError
Source§impl PartialEq for PayloadTooLargeError
impl PartialEq for PayloadTooLargeError
Source§impl Serialize for PayloadTooLargeError
impl Serialize for PayloadTooLargeError
impl Copy for PayloadTooLargeError
impl Eq for PayloadTooLargeError
impl StructuralPartialEq for PayloadTooLargeError
Auto Trait Implementations§
impl Freeze for PayloadTooLargeError
impl RefUnwindSafe for PayloadTooLargeError
impl Send for PayloadTooLargeError
impl Sync for PayloadTooLargeError
impl Unpin for PayloadTooLargeError
impl UnsafeUnpin for PayloadTooLargeError
impl UnwindSafe for PayloadTooLargeError
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