Struct diesel::r2d2::Extensions

source ·
pub struct Extensions(_);
Available on crate feature r2d2 only.
Expand description

A “type map” used to associate data with pooled connections.

Extensions is a data structure mapping types to a value of that type. This can be used to, for example, cache prepared statements along side their connection.

Implementations§

source§

impl Extensions

source

pub fn new() -> Extensions

Returns a new, empty Extensions.

source

pub fn insert<T>(&mut self, value: T) -> Option<T>where T: 'static + Sync + Send,

Inserts a new value into the map.

Returns the previously stored value of that type, if present.

source

pub fn get<T>(&self) -> Option<&T>where T: 'static + Sync + Send,

Returns a shared reference to the stored value of the specified type.

source

pub fn get_mut<T>(&mut self) -> Option<&mut T>where T: 'static + Sync + Send,

Returns a mutable reference to the stored value of the specified type.

source

pub fn remove<T>(&mut self) -> Option<T>where T: 'static + Sync + Send,

Removes the value of the specified type from the map, returning it.

source

pub fn clear(&mut self)

Removes all values from the map.

Trait Implementations§

source§

impl Default for Extensions

source§

fn default() -> Extensions

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoSql for T

source§

fn into_sql<T>(self) -> AsExprOf<Self, T>where Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V