pub enum CursorUpdatability {
ReadOnly,
Update {
columns: Option<Vec<String>>,
},
Unspecified,
}Expand description
Cursor updatability specification
Variants§
Trait Implementations§
Source§impl Clone for CursorUpdatability
impl Clone for CursorUpdatability
Source§fn clone(&self) -> CursorUpdatability
fn clone(&self) -> CursorUpdatability
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 CursorUpdatability
impl Debug for CursorUpdatability
Source§impl PartialEq for CursorUpdatability
impl PartialEq for CursorUpdatability
impl StructuralPartialEq for CursorUpdatability
Auto Trait Implementations§
impl Freeze for CursorUpdatability
impl RefUnwindSafe for CursorUpdatability
impl Send for CursorUpdatability
impl Sync for CursorUpdatability
impl Unpin for CursorUpdatability
impl UnwindSafe for CursorUpdatability
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