pub struct ConfigManagerDelegate { /* private fields */ }Implementations§
Trait Implementations§
Source§impl ConfigManager for ConfigManagerDelegate
impl ConfigManager for ConfigManagerDelegate
Source§fn get_instance_config(&self) -> InstanceConfig
fn get_instance_config(&self) -> InstanceConfig
Returns the instance configuration.
Source§fn get_graphql_server_config(&self) -> GraphQLServerConfig
fn get_graphql_server_config(&self) -> GraphQLServerConfig
Returns the GraphQL server configuration.
Source§fn get_plugins_config(&self) -> PluginsConfig
fn get_plugins_config(&self) -> PluginsConfig
Returns the plugins configuration.
Source§fn get_remotes_config(&self) -> RemotesConfig
fn get_remotes_config(&self) -> RemotesConfig
Returns the remotes configuration.
Auto Trait Implementations§
impl Freeze for ConfigManagerDelegate
impl !RefUnwindSafe for ConfigManagerDelegate
impl Send for ConfigManagerDelegate
impl Sync for ConfigManagerDelegate
impl Unpin for ConfigManagerDelegate
impl !UnwindSafe for ConfigManagerDelegate
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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