pub enum DatabaseKind {
PostgreSql,
Sqlite,
MySql,
}Variants§
Trait Implementations§
Source§impl Clone for DatabaseKind
impl Clone for DatabaseKind
Source§fn clone(&self) -> DatabaseKind
fn clone(&self) -> DatabaseKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DatabaseKind
Source§impl Debug for DatabaseKind
impl Debug for DatabaseKind
impl Eq for DatabaseKind
Source§impl PartialEq for DatabaseKind
impl PartialEq for DatabaseKind
Source§fn eq(&self, other: &DatabaseKind) -> bool
fn eq(&self, other: &DatabaseKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DatabaseKind
Auto Trait Implementations§
impl Freeze for DatabaseKind
impl RefUnwindSafe for DatabaseKind
impl Send for DatabaseKind
impl Sync for DatabaseKind
impl Unpin for DatabaseKind
impl UnsafeUnpin for DatabaseKind
impl UnwindSafe for DatabaseKind
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