Struct ory_client::models::error_flow_replaced::ErrorFlowReplaced
source · pub struct ErrorFlowReplaced {
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 request: Option<String>,
pub status: Option<String>,
pub use_flow_id: Option<String>,
}Expand description
ErrorFlowReplaced : Is sent when a flow is replaced by a different flow of the same class
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
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
use_flow_id: Option<String>The flow ID that should be used for the new flow as it contains the correct messages.
Implementations§
source§impl ErrorFlowReplaced
impl ErrorFlowReplaced
sourcepub fn new(message: String) -> ErrorFlowReplaced
pub fn new(message: String) -> ErrorFlowReplaced
Is sent when a flow is replaced by a different flow of the same class
Trait Implementations§
source§impl Clone for ErrorFlowReplaced
impl Clone for ErrorFlowReplaced
source§fn clone(&self) -> ErrorFlowReplaced
fn clone(&self) -> ErrorFlowReplaced
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 ErrorFlowReplaced
impl Debug for ErrorFlowReplaced
source§impl<'de> Deserialize<'de> for ErrorFlowReplaced
impl<'de> Deserialize<'de> for ErrorFlowReplaced
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<ErrorFlowReplaced> for ErrorFlowReplaced
impl PartialEq<ErrorFlowReplaced> for ErrorFlowReplaced
source§fn eq(&self, other: &ErrorFlowReplaced) -> bool
fn eq(&self, other: &ErrorFlowReplaced) -> bool
This method tests for
self and other values to be equal, and is used
by ==.