Type Alias async_graphql::FieldError
source · pub type FieldError = Error;Expand description
An alias of async_graphql::Error. Present for backward compatibility reasons.
Aliased Type§
struct FieldError {
pub message: String,
pub source: Option<Arc<dyn Any + Sync + Send>>,
pub extensions: Option<ErrorExtensionValues>,
}Fields§
§message: StringThe error message.
source: Option<Arc<dyn Any + Sync + Send>>The source of the error.
extensions: Option<ErrorExtensionValues>Extensions to the error.