pub struct GraphQLError {
pub message: String,
pub locations: Option<Vec<GraphQLErrorLocation>>,
pub path: Option<GraphQLErrorPath>,
pub extensions: GraphQLErrorExtensions,
}Fields§
§message: String§locations: Option<Vec<GraphQLErrorLocation>>§path: Option<GraphQLErrorPath>§extensions: GraphQLErrorExtensionsImplementations§
Source§impl GraphQLError
impl GraphQLError
pub fn entity_index_and_path<'a>(&'a self) -> Option<EntityIndexAndPath<'a>>
pub fn normalize_entity_error( self, entity_index_error_map: &HashMap<&usize, Vec<GraphQLErrorPath>>, ) -> Vec<GraphQLError>
pub fn from_message_and_extensions( message: String, extensions: GraphQLErrorExtensions, ) -> Self
pub fn add_subgraph_name(self, subgraph_name: &str) -> Self
pub fn add_affected_path(self, affected_path: String) -> Self
Trait Implementations§
Source§impl Clone for GraphQLError
impl Clone for GraphQLError
Source§fn clone(&self) -> GraphQLError
fn clone(&self) -> GraphQLError
Returns a duplicate 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 GraphQLError
impl Debug for GraphQLError
Source§impl<'de> Deserialize<'de> for GraphQLError
impl<'de> Deserialize<'de> for GraphQLError
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 From<&ValidationError> for GraphQLError
impl From<&ValidationError> for GraphQLError
Source§fn from(val: &ValidationError) -> Self
fn from(val: &ValidationError) -> Self
Converts to this type from the input type.
Source§impl From<&str> for GraphQLError
impl From<&str> for GraphQLError
Source§impl From<PlanExecutionError> for GraphQLError
impl From<PlanExecutionError> for GraphQLError
Source§fn from(val: PlanExecutionError) -> Self
fn from(val: PlanExecutionError) -> Self
Converts to this type from the input type.
Source§impl From<String> for GraphQLError
impl From<String> for GraphQLError
Source§impl From<SubgraphExecutorError> for GraphQLError
impl From<SubgraphExecutorError> for GraphQLError
Source§fn from(error: SubgraphExecutorError) -> Self
fn from(error: SubgraphExecutorError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GraphQLError
impl !RefUnwindSafe for GraphQLError
impl Send for GraphQLError
impl Sync for GraphQLError
impl Unpin for GraphQLError
impl !UnwindSafe for GraphQLError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
Source§fn try_octets_into(
self,
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self, ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
Source§fn octets_into(self) -> Target
fn octets_into(self) -> Target
Performs an infallible conversion.