Struct elasticsearch_dsl::search::ErrorCause
source · pub struct ErrorCause {
pub caused_by: Option<Box<ErrorCause>>,
pub reason: Option<String>,
pub root_cause: Vec<ErrorCause>,
pub stack_trace: Option<String>,
pub suppressed: Vec<ErrorCause>,
pub ty: Option<String>,
pub additional_details: Map<String, Value>,
}
Expand description
Error cause
Fields§
§caused_by: Option<Box<ErrorCause>>
Deeper error cause
reason: Option<String>
Error cause reason
root_cause: Vec<ErrorCause>
Root error cause
stack_trace: Option<String>
Exception stack trace
suppressed: Vec<ErrorCause>
Suppressed error causes
ty: Option<String>
Type of error cause
additional_details: Map<String, Value>
Additional fields that are not part of the strongly typed error cause
Trait Implementations§
source§impl Clone for ErrorCause
impl Clone for ErrorCause
source§fn clone(&self) -> ErrorCause
fn clone(&self) -> ErrorCause
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 ErrorCause
impl Debug for ErrorCause
source§impl<'de> Deserialize<'de> for ErrorCause
impl<'de> Deserialize<'de> for ErrorCause
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