Struct odbc_api::DriverInfo 
source · pub struct DriverInfo {
    pub description: String,
    pub attributes: HashMap<String, String>,
}Expand description
Struct holding information available on a driver. Can be obtained via Environment::drivers.
Fields§
§description: StringName of the ODBC driver
attributes: HashMap<String, String>Attributes values of the driver by key
Trait Implementations§
source§impl Clone for DriverInfo
 
impl Clone for DriverInfo
source§fn clone(&self) -> DriverInfo
 
fn clone(&self) -> DriverInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresource§impl Debug for DriverInfo
 
impl Debug for DriverInfo
source§impl PartialEq for DriverInfo
 
impl PartialEq for DriverInfo
source§fn eq(&self, other: &DriverInfo) -> bool
 
fn eq(&self, other: &DriverInfo) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl Eq for DriverInfo
impl StructuralPartialEq for DriverInfo
Auto Trait Implementations§
impl Freeze for DriverInfo
impl RefUnwindSafe for DriverInfo
impl Send for DriverInfo
impl Sync for DriverInfo
impl Unpin for DriverInfo
impl UnwindSafe for DriverInfo
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