pub struct Executor<'exec, 'req> { /* private fields */ }Implementations§
Source§impl<'exec, 'req> Executor<'exec, 'req>
impl<'exec, 'req> Executor<'exec, 'req>
pub fn new( variable_values: &'exec Option<HashMap<String, Value>>, executors: &'exec SubgraphExecutorMap, schema_metadata: &'exec SchemaMetadata, client_request: &'exec ClientRequestDetails<'exec, 'req>, headers_plan: &'exec HeaderRulesPlan, jwt_forwarding_plan: &'exec Option<JwtAuthForwardingPlan>, dedupe_subgraph_requests: bool, ) -> Self
pub async fn execute( &self, ctx: &mut ExecutionContext<'exec>, plan: Option<&PlanNode>, ) -> Result<(), PlanExecutionError>
Auto Trait Implementations§
impl<'exec, 'req> Freeze for Executor<'exec, 'req>
impl<'exec, 'req> !RefUnwindSafe for Executor<'exec, 'req>
impl<'exec, 'req> Send for Executor<'exec, 'req>
impl<'exec, 'req> Sync for Executor<'exec, 'req>
impl<'exec, 'req> Unpin for Executor<'exec, 'req>
impl<'exec, 'req> !UnwindSafe for Executor<'exec, 'req>
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> 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.