pub struct HandlerFactory(pub Arc<DfSessionService>);
Tuple Fields§
§0: Arc<DfSessionService>
Trait Implementations§
Source§impl PgWireHandlerFactory for HandlerFactory
impl PgWireHandlerFactory for HandlerFactory
type StartupHandler = NoopStartupHandler
type SimpleQueryHandler = DfSessionService
type ExtendedQueryHandler = DfSessionService
type CopyHandler = NoopCopyHandler
fn simple_query_handler(&self) -> Arc<Self::SimpleQueryHandler>
fn extended_query_handler(&self) -> Arc<Self::ExtendedQueryHandler>
fn startup_handler(&self) -> Arc<Self::StartupHandler>
fn copy_handler(&self) -> Arc<Self::CopyHandler>
Auto Trait Implementations§
impl Freeze for HandlerFactory
impl !RefUnwindSafe for HandlerFactory
impl Send for HandlerFactory
impl Sync for HandlerFactory
impl Unpin for HandlerFactory
impl !UnwindSafe for HandlerFactory
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> 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