pub enum RecyclingMethod {
Fast,
Verified,
Clean,
Custom(String),
}
Expand description
Variants§
Fast
Only run Client::is_closed()
when recycling existing connections.
Unless you have special needs this is a safe choice.
Verified
Run Client::is_closed()
and execute a test query.
This is slower, but guarantees that the database connection is ready to
be used. Normally, Client::is_closed()
should be enough to filter
out bad connections, but under some circumstances (i.e. hard-closed
network connections) it’s possible that Client::is_closed()
returns false
while the connection is dead. You will receive an error
on your first query then.
Clean
Like Verified
query method, but instead use the following sequence
of statements which guarantees a pristine connection:
CLOSE ALL;
SET SESSION AUTHORIZATION DEFAULT;
RESET ALL;
UNLISTEN *;
SELECT pg_advisory_unlock_all();
DISCARD TEMP;
DISCARD SEQUENCES;
This is similar to calling DISCARD ALL
. but doesn’t call
DEALLOCATE ALL
and DISCARD PLAN
, so that the statement cache is not
rendered ineffective.
Custom(String)
Like Verified
but allows to specify a custom SQL to be executed.
Implementations§
Trait Implementations§
source§impl Clone for RecyclingMethod
impl Clone for RecyclingMethod
source§fn clone(&self) -> RecyclingMethod
fn clone(&self) -> RecyclingMethod
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RecyclingMethod
impl Debug for RecyclingMethod
source§impl Default for RecyclingMethod
impl Default for RecyclingMethod
source§impl PartialEq for RecyclingMethod
impl PartialEq for RecyclingMethod
impl Eq for RecyclingMethod
impl StructuralPartialEq for RecyclingMethod
Auto Trait Implementations§
impl Freeze for RecyclingMethod
impl RefUnwindSafe for RecyclingMethod
impl Send for RecyclingMethod
impl Sync for RecyclingMethod
impl Unpin for RecyclingMethod
impl UnwindSafe for RecyclingMethod
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.