pub struct TinyInt;Expand description
The tiny integer SQL type.
This is only available on MySQL.
Keep in mind that infer_schema! will see TINYINT(1) as Bool,
not TinyInt.
ToSql impls
FromSql impls
Trait Implementations
sourceimpl QueryId for TinyInt
impl QueryId for TinyInt
sourceconst HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by Self be uniquely identified by its type? Read more
impl Copy for TinyInt
impl NotNull for TinyInt
impl SingleValue for TinyInt
Auto Trait Implementations
impl RefUnwindSafe for TinyInt
impl Send for TinyInt
impl Sync for TinyInt
impl Unpin for TinyInt
impl UnwindSafe for TinyInt
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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