#[repr(C)]pub struct FFI_AdbcConnection {
pub private_data: *mut c_void,
pub private_driver: *const FFI_AdbcDriver,
}Fields§
§private_data: *mut c_voidOpaque implementation-defined state. This field is NULLPTR iff the connection is uninitialized/freed.
private_driver: *const FFI_AdbcDriverThe associated driver (used by the driver manager to help track state).
Trait Implementations§
Source§impl Debug for FFI_AdbcConnection
impl Debug for FFI_AdbcConnection
Source§impl Default for FFI_AdbcConnection
impl Default for FFI_AdbcConnection
impl Send for FFI_AdbcConnection
Auto Trait Implementations§
impl !Sync for FFI_AdbcConnection
impl Freeze for FFI_AdbcConnection
impl RefUnwindSafe for FFI_AdbcConnection
impl Unpin for FFI_AdbcConnection
impl UnsafeUnpin for FFI_AdbcConnection
impl UnwindSafe for FFI_AdbcConnection
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