Struct r2d2::Extensions
source · pub struct Extensions(_);
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
impl Extensions
sourcepub fn new() -> Extensions
pub fn new() -> Extensions
Returns a new, empty Extensions
.
sourcepub fn insert<T>(&mut self, value: T) -> Option<T>where
T: 'static + Sync + Send,
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.
sourcepub fn get<T>(&self) -> Option<&T>where
T: 'static + Sync + Send,
pub fn get<T>(&self) -> Option<&T>where
T: 'static + Sync + Send,
Returns a shared reference to the stored value of the specified type.
sourcepub fn get_mut<T>(&mut self) -> Option<&mut T>where
T: 'static + Sync + Send,
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.
Trait Implementations§
source§impl Default for Extensions
impl Default for Extensions
source§fn default() -> Extensions
fn default() -> Extensions
Returns the “default value” for a type. Read more