pub enum Updateable {
ReadOnly,
ReadWrite,
Unknown,
}Expand description
Update mode for a column.
Variants§
Trait Implementations§
Source§impl Clone for Updateable
impl Clone for Updateable
Source§fn clone(&self) -> Updateable
fn clone(&self) -> Updateable
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 Updateable
impl Debug for Updateable
Source§impl Default for Updateable
impl Default for Updateable
Source§fn default() -> Updateable
fn default() -> Updateable
Returns the “default value” for a type. Read more
Source§impl PartialEq for Updateable
impl PartialEq for Updateable
impl Copy for Updateable
impl Eq for Updateable
impl StructuralPartialEq for Updateable
Auto Trait Implementations§
impl Freeze for Updateable
impl RefUnwindSafe for Updateable
impl Send for Updateable
impl Sync for Updateable
impl Unpin for Updateable
impl UnwindSafe for Updateable
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