pub struct OptionFlags2 {
pub language_fatal: bool,
pub odbc: bool,
pub tran_boundary: bool,
pub cache_connect: bool,
pub user_type: u8,
pub integrated_security: bool,
}Expand description
LOGIN7 option flags 2.
Fields§
§language_fatal: boolLanguage is fatal.
odbc: boolODBC driver.
tran_boundary: boolObsolete: transaction boundary.
cache_connect: boolObsolete: cache connect.
user_type: u8User type (0 = Normal, 1 = Server, 2 = DQ login, 3 = Replication).
integrated_security: boolIntegrated security.
Implementations§
Trait Implementations§
Source§impl Clone for OptionFlags2
impl Clone for OptionFlags2
Source§fn clone(&self) -> OptionFlags2
fn clone(&self) -> OptionFlags2
Returns a duplicate 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 OptionFlags2
impl Debug for OptionFlags2
Source§impl Default for OptionFlags2
impl Default for OptionFlags2
Source§fn default() -> OptionFlags2
fn default() -> OptionFlags2
Returns the “default value” for a type. Read more
impl Copy for OptionFlags2
Auto Trait Implementations§
impl Freeze for OptionFlags2
impl RefUnwindSafe for OptionFlags2
impl Send for OptionFlags2
impl Sync for OptionFlags2
impl Unpin for OptionFlags2
impl UnwindSafe for OptionFlags2
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