pub struct OptionFlags1 {
pub byte_order_be: bool,
pub char_ebcdic: bool,
pub float_ieee: bool,
pub dump_load_off: bool,
pub use_db_notify: bool,
pub database_fatal: bool,
pub set_lang_warn: bool,
}Expand description
LOGIN7 option flags 1.
Fields§
§byte_order_be: boolUse big-endian byte order.
char_ebcdic: boolCharacter set (0 = ASCII, 1 = EBCDIC).
float_ieee: boolFloating point representation (0 = IEEE 754, 1 = VAX, 2 = ND5000).
dump_load_off: boolDump/load off.
use_db_notify: boolUse DB notification.
database_fatal: boolDatabase is fatal.
set_lang_warn: boolSet language warning.
Implementations§
Source§impl OptionFlags1
impl OptionFlags1
Trait Implementations§
Source§impl Clone for OptionFlags1
impl Clone for OptionFlags1
Source§fn clone(&self) -> OptionFlags1
fn clone(&self) -> OptionFlags1
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 OptionFlags1
impl Debug for OptionFlags1
Source§impl Default for OptionFlags1
impl Default for OptionFlags1
Source§fn default() -> OptionFlags1
fn default() -> OptionFlags1
Returns the “default value” for a type. Read more
impl Copy for OptionFlags1
Auto Trait Implementations§
impl Freeze for OptionFlags1
impl RefUnwindSafe for OptionFlags1
impl Send for OptionFlags1
impl Sync for OptionFlags1
impl Unpin for OptionFlags1
impl UnwindSafe for OptionFlags1
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