Struct async_graphql::extensions::ApolloTracing
source · [−]pub struct ApolloTracing;
Available on crate feature
apollo_tracing
only.Expand description
Apollo tracing extension for performance tracing
Apollo Tracing works by including data in the extensions field of the
GraphQL response, which is reserved by the GraphQL spec for extra
information that a server wants to return. That way, you have access to
performance traces alongside the data returned by your query. It’s already
supported by Apollo Engine
, and we’re excited to see what other kinds of
integrations people can build on top of this format.
Trait Implementations
sourceimpl ExtensionFactory for ApolloTracing
impl ExtensionFactory for ApolloTracing
Auto Trait Implementations
impl RefUnwindSafe for ApolloTracing
impl Send for ApolloTracing
impl Sync for ApolloTracing
impl Unpin for ApolloTracing
impl UnwindSafe for ApolloTracing
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more