#[repr(i32)]pub enum enum_cursor_type {
CURSOR_TYPE_NO_CURSOR = 0,
CURSOR_TYPE_READ_ONLY = 1,
CURSOR_TYPE_FOR_UPDATE = 2,
CURSOR_TYPE_SCROLLABLE = 4,
}Variants§
CURSOR_TYPE_NO_CURSOR = 0
CURSOR_TYPE_READ_ONLY = 1
CURSOR_TYPE_FOR_UPDATE = 2
CURSOR_TYPE_SCROLLABLE = 4
Trait Implementations§
Source§impl Clone for enum_cursor_type
impl Clone for enum_cursor_type
Source§fn clone(&self) -> enum_cursor_type
fn clone(&self) -> enum_cursor_type
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 enum_cursor_type
impl Debug for enum_cursor_type
Source§impl Hash for enum_cursor_type
impl Hash for enum_cursor_type
Source§impl PartialEq for enum_cursor_type
impl PartialEq for enum_cursor_type
impl Copy for enum_cursor_type
impl Eq for enum_cursor_type
impl StructuralPartialEq for enum_cursor_type
Auto Trait Implementations§
impl Freeze for enum_cursor_type
impl RefUnwindSafe for enum_cursor_type
impl Send for enum_cursor_type
impl Sync for enum_cursor_type
impl Unpin for enum_cursor_type
impl UnwindSafe for enum_cursor_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