Enum c3p0_postgres::deadpool::postgres::RecyclingMethod [−][src]
pub enum RecyclingMethod {
Fast,
Verified,
Clean,
Custom(String),
}Expand description
This enum is used to control how the connection is recycled.
Attention: The current default is Verified but will be changed
to Fast in the next minor release of deadpool-postgres. Please
make sure to explicitly state this if you want to keep using the
Verified recycling method.
Variants
Only run Client::is_closed when recycling existing connections.
Unless you have special needs this is a safe choice.
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 is possible that Client::is_closed returns
false but the connection is dead. You will receive an error on
your first query then.
Like Verified query method but instead use the following sequence of
statements which guarantees a prestine 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 does not 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.
Tuple Fields of Custom
0: StringImplementations
Trait Implementations
Returns the “default value” for a type. Read more
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<RecyclingMethod, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<RecyclingMethod, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for RecyclingMethod
impl Send for RecyclingMethod
impl Sync for RecyclingMethod
impl Unpin for RecyclingMethod
impl UnwindSafe for RecyclingMethod
Blanket Implementations
Mutably borrows from an owned value. Read more