Struct conjure_error::PermissionDenied
source · pub struct PermissionDenied {}Expand description
A generic PERMISSION_DENIED error.
Implementations§
Trait Implementations§
source§impl Clone for PermissionDenied
impl Clone for PermissionDenied
source§fn clone(&self) -> PermissionDenied
fn clone(&self) -> PermissionDenied
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 PermissionDenied
impl Debug for PermissionDenied
source§impl<'de> Deserialize<'de> for PermissionDenied
impl<'de> Deserialize<'de> for PermissionDenied
source§fn deserialize<D>(d: D) -> Result<PermissionDenied, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<PermissionDenied, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl ErrorType for PermissionDenied
impl ErrorType for PermissionDenied
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<PermissionDenied> for Builder
impl From<PermissionDenied> for Builder
source§fn from(_v: PermissionDenied) -> Builder
fn from(_v: PermissionDenied) -> Builder
Converts to this type from the input type.
source§impl Hash for PermissionDenied
impl Hash for PermissionDenied
source§impl Ord for PermissionDenied
impl Ord for PermissionDenied
source§fn cmp(&self, other: &PermissionDenied) -> Ordering
fn cmp(&self, other: &PermissionDenied) -> 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<PermissionDenied> for PermissionDenied
impl PartialEq<PermissionDenied> for PermissionDenied
source§fn eq(&self, other: &PermissionDenied) -> bool
fn eq(&self, other: &PermissionDenied) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<PermissionDenied> for PermissionDenied
impl PartialOrd<PermissionDenied> for PermissionDenied
source§fn partial_cmp(&self, other: &PermissionDenied) -> Option<Ordering>
fn partial_cmp(&self, other: &PermissionDenied) -> 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