#[non_exhaustive]#[repr(u32)]pub enum enum_stmt_attr_type {
STMT_ATTR_UPDATE_MAX_LENGTH = 0,
STMT_ATTR_CURSOR_TYPE = 1,
STMT_ATTR_PREFETCH_ROWS = 2,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for enum_stmt_attr_type
impl Clone for enum_stmt_attr_type
Source§fn clone(&self) -> enum_stmt_attr_type
fn clone(&self) -> enum_stmt_attr_type
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 enum_stmt_attr_type
impl Debug for enum_stmt_attr_type
Source§impl Hash for enum_stmt_attr_type
impl Hash for enum_stmt_attr_type
Source§impl PartialEq for enum_stmt_attr_type
impl PartialEq for enum_stmt_attr_type
impl Copy for enum_stmt_attr_type
impl Eq for enum_stmt_attr_type
impl StructuralPartialEq for enum_stmt_attr_type
Auto Trait Implementations§
impl Freeze for enum_stmt_attr_type
impl RefUnwindSafe for enum_stmt_attr_type
impl Send for enum_stmt_attr_type
impl Sync for enum_stmt_attr_type
impl Unpin for enum_stmt_attr_type
impl UnwindSafe for enum_stmt_attr_type
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