pub struct NeedsPrivilegedSessionError {
pub code: Option<i64>,
pub debug: Option<String>,
pub details: Option<HashMap<String, Value>>,
pub id: Option<String>,
pub message: String,
pub reason: Option<String>,
pub redirect_browser_to: String,
pub request: Option<String>,
pub status: Option<String>,
}Fields§
§code: Option<i64>The status code
debug: Option<String>Debug information This field is often not exposed to protect against leaking sensitive information.
details: Option<HashMap<String, Value>>Further error details
id: Option<String>The error ID Useful when trying to identify various errors in application logic.
message: StringError message The error’s message.
reason: Option<String>A human-readable reason for the error
redirect_browser_to: StringPoints to where to redirect the user to next.
request: Option<String>The request ID The request ID is often exposed internally in order to trace errors across service architectures. This is often a UUID.
status: Option<String>The status description
Implementations§
source§impl NeedsPrivilegedSessionError
impl NeedsPrivilegedSessionError
pub fn new( message: String, redirect_browser_to: String ) -> NeedsPrivilegedSessionError
Trait Implementations§
source§impl Clone for NeedsPrivilegedSessionError
impl Clone for NeedsPrivilegedSessionError
source§fn clone(&self) -> NeedsPrivilegedSessionError
fn clone(&self) -> NeedsPrivilegedSessionError
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 NeedsPrivilegedSessionError
impl Debug for NeedsPrivilegedSessionError
source§impl<'de> Deserialize<'de> for NeedsPrivilegedSessionError
impl<'de> Deserialize<'de> for NeedsPrivilegedSessionError
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 PartialEq<NeedsPrivilegedSessionError> for NeedsPrivilegedSessionError
impl PartialEq<NeedsPrivilegedSessionError> for NeedsPrivilegedSessionError
source§fn eq(&self, other: &NeedsPrivilegedSessionError) -> bool
fn eq(&self, other: &NeedsPrivilegedSessionError) -> bool
This method tests for
self and other values to be equal, and is used
by ==.