Enum MySqlType
#[non_exhaustive]pub enum MySqlType {
TinyBlob,
MediumBlob,
LongBlob,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MySqlType
impl RefUnwindSafe for MySqlType
impl Send for MySqlType
impl Sync for MySqlType
impl Unpin for MySqlType
impl UnwindSafe for MySqlType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> IntoColumnRef for T
impl<T> IntoColumnRef for T
fn into_column_ref(self) -> ColumnRef
§impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
impl<T> IntoIndexColumn for Twhere
T: Into<IndexColumn>,
fn into_index_column(self) -> IndexColumn
§impl<T> IntoTableRef for T
impl<T> IntoTableRef for T
fn into_table_ref(self) -> TableRef
§impl<T> IntoTypeRef for T
impl<T> IntoTypeRef for T
fn into_type_ref(self) -> TypeRef
§impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
impl<T> MaybeQualifiedOnce for Twhere
T: IntoIden,
§fn into_2_parts(self) -> (Option<DynIden>, DynIden)
fn into_2_parts(self) -> (Option<DynIden>, DynIden)
Represent a maybe-qualified name as a
(foo?, bar) tuple.