pub enum ProjectDatabase {
Sqlite,
Pgsql,
Mysql,
All,
}Expand description
One optional database driver selected when a project is created.
Variants§
Implementations§
Source§impl ProjectDatabase
impl ProjectDatabase
pub const fn cargo_feature(self) -> &'static str
pub const fn toasty_features(self) -> &'static str
Trait Implementations§
Source§impl Clone for ProjectDatabase
impl Clone for ProjectDatabase
Source§fn clone(&self) -> ProjectDatabase
fn clone(&self) -> ProjectDatabase
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 ProjectDatabase
Source§impl Debug for ProjectDatabase
impl Debug for ProjectDatabase
impl Eq for ProjectDatabase
Source§impl FromStr for ProjectDatabase
impl FromStr for ProjectDatabase
Source§impl PartialEq for ProjectDatabase
impl PartialEq for ProjectDatabase
impl StructuralPartialEq for ProjectDatabase
Auto Trait Implementations§
impl Freeze for ProjectDatabase
impl RefUnwindSafe for ProjectDatabase
impl Send for ProjectDatabase
impl Sync for ProjectDatabase
impl Unpin for ProjectDatabase
impl UnsafeUnpin for ProjectDatabase
impl UnwindSafe for ProjectDatabase
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