Enum fuel_indexer_lib::graphql::parser::ParsedError
source · pub enum ParsedError {
Generic,
ParseError(Error),
UnsupportedTypeKind,
ListTypesUnsupported,
InconsistentVirtualUnion(String),
}Expand description
Error type returned by parsing GraphQL schema.
Variants§
Generic
ParseError(Error)
UnsupportedTypeKind
ListTypesUnsupported
InconsistentVirtualUnion(String)
Trait Implementations§
source§impl Debug for ParsedError
impl Debug for ParsedError
source§impl Display for ParsedError
impl Display for ParsedError
source§impl Error for ParsedError
impl Error for ParsedError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 RefUnwindSafe for ParsedError
impl Send for ParsedError
impl Sync for ParsedError
impl Unpin for ParsedError
impl UnwindSafe for ParsedError
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