Enum sea_schema::mysql::def::StorageEngine
source · pub enum StorageEngine {
Archive,
Blackhole,
MrgMyIsam,
Federated,
MyIsam,
PerformanceSchema,
InnoDb,
Memory,
Csv,
Unknown(String),
}
Available on crate features
mysql
and def
only.Variants
Archive
Blackhole
MrgMyIsam
Federated
MyIsam
PerformanceSchema
InnoDb
Memory
Csv
Unknown(String)
Implementations
sourceimpl StorageEngine
impl StorageEngine
pub fn unknown_to_string(&self) -> &String
pub fn string_to_unknown(string: &str) -> Option<Self>
Trait Implementations
sourceimpl Clone for StorageEngine
impl Clone for StorageEngine
sourcefn clone(&self) -> StorageEngine
fn clone(&self) -> StorageEngine
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for StorageEngine
impl Debug for StorageEngine
sourceimpl Iden for StorageEngine
impl Iden for StorageEngine
sourceimpl PartialEq<StorageEngine> for StorageEngine
impl PartialEq<StorageEngine> for StorageEngine
sourcefn eq(&self, other: &StorageEngine) -> bool
fn eq(&self, other: &StorageEngine) -> bool
impl StructuralPartialEq for StorageEngine
Auto Trait Implementations
impl RefUnwindSafe for StorageEngine
impl Send for StorageEngine
impl Sync for StorageEngine
impl Unpin for StorageEngine
impl UnwindSafe for StorageEngine
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more