#[non_exhaustive]pub struct RequestTooLargeError { /* private fields */ }Expand description
The server response for the request too large error.
Implementations§
source§impl RequestTooLargeError
impl RequestTooLargeError
pub fn code(&self) -> Option<&RequestTooLargeCode>
source§impl RequestTooLargeError
impl RequestTooLargeError
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RequestTooLargeError.
Trait Implementations§
source§impl Clone for RequestTooLargeError
impl Clone for RequestTooLargeError
source§fn clone(&self) -> RequestTooLargeError
fn clone(&self) -> RequestTooLargeError
Returns a copy 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 RequestTooLargeError
impl Debug for RequestTooLargeError
source§impl Display for RequestTooLargeError
impl Display for RequestTooLargeError
source§impl Error for RequestTooLargeError
impl Error for RequestTooLargeError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 PartialEq<RequestTooLargeError> for RequestTooLargeError
impl PartialEq<RequestTooLargeError> for RequestTooLargeError
source§fn eq(&self, other: &RequestTooLargeError) -> bool
fn eq(&self, other: &RequestTooLargeError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for RequestTooLargeError
Auto Trait Implementations§
impl RefUnwindSafe for RequestTooLargeError
impl Send for RequestTooLargeError
impl Sync for RequestTooLargeError
impl Unpin for RequestTooLargeError
impl UnwindSafe for RequestTooLargeError
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