pub struct GraphQLServer { /* private fields */ }Expand description
Main GraphQL server
Implementations§
Source§impl GraphQLServer
impl GraphQLServer
pub fn new(store: Arc<RdfStore>) -> Self
pub fn new_with_mock(_store: Arc<MockStore>) -> Result<Self>
pub fn with_config(self, config: GraphQLConfig) -> Self
Sourcepub async fn with_distributed_cache(
self,
cache_config: CacheConfig,
) -> Result<Self>
pub async fn with_distributed_cache( self, cache_config: CacheConfig, ) -> Result<Self>
Enable distributed caching
Sourcepub async fn get_cache_stats(&self) -> Option<CacheStats>
pub async fn get_cache_stats(&self) -> Option<CacheStats>
Get cache statistics if caching is enabled
pub async fn start(&self, addr: &str) -> Result<()>
Auto Trait Implementations§
impl !RefUnwindSafe for GraphQLServer
impl !UnwindSafe for GraphQLServer
impl Freeze for GraphQLServer
impl Send for GraphQLServer
impl Sync for GraphQLServer
impl Unpin for GraphQLServer
impl UnsafeUnpin for GraphQLServer
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
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 more