Struct conjure_error::RequestEntityTooLarge
source · pub struct RequestEntityTooLarge {}Expand description
A generic REQUEST_ENTITY_TOO_LARGE error.
Implementations§
Trait Implementations§
source§impl Clone for RequestEntityTooLarge
impl Clone for RequestEntityTooLarge
source§fn clone(&self) -> RequestEntityTooLarge
fn clone(&self) -> RequestEntityTooLarge
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 RequestEntityTooLarge
impl Debug for RequestEntityTooLarge
source§impl<'de> Deserialize<'de> for RequestEntityTooLarge
impl<'de> Deserialize<'de> for RequestEntityTooLarge
source§fn deserialize<D>(d: D) -> Result<RequestEntityTooLarge, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<RequestEntityTooLarge, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl ErrorType for RequestEntityTooLarge
impl ErrorType for RequestEntityTooLarge
source§fn instance_id(&self) -> Option<Uuid>
fn instance_id(&self) -> Option<Uuid>
Returns the error’s instance ID, if it stores one. Read more
source§fn safe_args(&self) -> &'static [&'static str]
fn safe_args(&self) -> &'static [&'static str]
Returns a sorted slice of the names of the error’s safe parameters.
source§fn with_instance_id(self, instance_id: Uuid) -> WithInstanceId<Self>where
Self: Sized,
fn with_instance_id(self, instance_id: Uuid) -> WithInstanceId<Self>where
Self: Sized,
Wraps the error in another that overrides its instance ID.
source§impl From<RequestEntityTooLarge> for Builder
impl From<RequestEntityTooLarge> for Builder
source§fn from(_v: RequestEntityTooLarge) -> Builder
fn from(_v: RequestEntityTooLarge) -> Builder
Converts to this type from the input type.
source§impl Hash for RequestEntityTooLarge
impl Hash for RequestEntityTooLarge
source§impl Ord for RequestEntityTooLarge
impl Ord for RequestEntityTooLarge
source§fn cmp(&self, other: &RequestEntityTooLarge) -> Ordering
fn cmp(&self, other: &RequestEntityTooLarge) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<RequestEntityTooLarge> for RequestEntityTooLarge
impl PartialEq<RequestEntityTooLarge> for RequestEntityTooLarge
source§fn eq(&self, other: &RequestEntityTooLarge) -> bool
fn eq(&self, other: &RequestEntityTooLarge) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<RequestEntityTooLarge> for RequestEntityTooLarge
impl PartialOrd<RequestEntityTooLarge> for RequestEntityTooLarge
source§fn partial_cmp(&self, other: &RequestEntityTooLarge) -> Option<Ordering>
fn partial_cmp(&self, other: &RequestEntityTooLarge) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more