Enum flp_gsp::interpreter::mysql::MysqlType[][src]

pub enum MysqlType {
Show variants BigInt(i64), BigUnsigned(u64), Binary(Vec<u8>), Bool(bool), Double(f64), Float(f32), Int(i32), SmallInt(i16), SmallUnsigned(u16), StringLike(String), TinyInt(i8), TinyUnsigned(u8), Unsigned(u32),
}

Variants

BigInt(i64)
BigUnsigned(u64)
Binary(Vec<u8>)
Bool(bool)
Double(f64)
Float(f32)
Int(i32)
SmallInt(i16)
SmallUnsigned(u16)
StringLike(String)
TinyInt(i8)
TinyUnsigned(u8)
Unsigned(u32)

Implementations

impl MysqlType[src]

pub fn replace_and_return(&self, s: &str) -> Self[src]

Trait Implementations

impl Clone for MysqlType[src]

impl Debug for MysqlType[src]

impl PartialEq<MysqlType> for MysqlType[src]

impl StructuralPartialEq for MysqlType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.