#[repr(C)]pub struct dpiConn { /* private fields */ }Expand description
Connection handles are used to represent connections to the database. These can
be standalone connections created by calling the function
dpiConn_create() or acquired from a session pool by calling the
function dpiPool_acquireConnection(). They can be closed by calling the
function dpiConn_close() or releasing the last reference to the
connection by calling the function dpiConn_release(). Connection
handles are used to create all handles other than session pools and context
handles.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for dpiConn
impl RefUnwindSafe for dpiConn
impl Send for dpiConn
impl Sync for dpiConn
impl Unpin for dpiConn
impl UnwindSafe for dpiConn
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