pub struct GraphQLApiFailure {
pub errors: Vec<GraphQlError>,
}Expand description
One or multiple errors returned by the GraphQL API.
Fields§
§errors: Vec<GraphQlError>Implementations§
Source§impl GraphQLApiFailure
impl GraphQLApiFailure
pub fn from_errors( msg: impl Into<String>, errors: Option<Vec<GraphQlError>>, ) -> Error
Trait Implementations§
Source§impl Debug for GraphQLApiFailure
impl Debug for GraphQLApiFailure
Source§impl Display for GraphQLApiFailure
impl Display for GraphQLApiFailure
Source§impl Error for GraphQLApiFailure
impl Error for GraphQLApiFailure
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for GraphQLApiFailure
impl RefUnwindSafe for GraphQLApiFailure
impl Send for GraphQLApiFailure
impl Sync for GraphQLApiFailure
impl Unpin for GraphQLApiFailure
impl UnsafeUnpin for GraphQLApiFailure
impl UnwindSafe for GraphQLApiFailure
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more