#[repr(u16)]pub enum DriverConnectOption {
NoPrompt = 0,
Complete = 1,
Prompt = 2,
CompleteRequired = 3,
}Expand description
Options for SQLDriverConnect
Variants§
Trait Implementations§
Source§impl Clone for DriverConnectOption
impl Clone for DriverConnectOption
Source§fn clone(&self) -> DriverConnectOption
fn clone(&self) -> DriverConnectOption
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DriverConnectOption
Source§impl Debug for DriverConnectOption
impl Debug for DriverConnectOption
impl Eq for DriverConnectOption
Source§impl PartialEq for DriverConnectOption
impl PartialEq for DriverConnectOption
Source§fn eq(&self, other: &DriverConnectOption) -> bool
fn eq(&self, other: &DriverConnectOption) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DriverConnectOption
Auto Trait Implementations§
impl Freeze for DriverConnectOption
impl RefUnwindSafe for DriverConnectOption
impl Send for DriverConnectOption
impl Sync for DriverConnectOption
impl Unpin for DriverConnectOption
impl UnsafeUnpin for DriverConnectOption
impl UnwindSafe for DriverConnectOption
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