Skip to main content

RexType

Trait RexType 

Source
pub trait RexType {
    // Required method
    fn rex_type() -> Type;
}

Required Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl RexType for &str

Source§

impl RexType for Value

Source§

impl RexType for bool

Source§

impl RexType for f32

Source§

impl RexType for f64

Source§

impl RexType for i8

Source§

impl RexType for i16

Source§

impl RexType for i32

Source§

impl RexType for i64

Source§

impl RexType for u8

Source§

impl RexType for u16

Source§

impl RexType for u32

Source§

impl RexType for u64

Source§

impl RexType for ()

Source§

impl RexType for String

Source§

impl RexType for DateTime<Utc>

Source§

impl RexType for Uuid

Source§

impl<A0: RexType> RexType for (A0,)

Source§

impl<A0: RexType, A1: RexType> RexType for (A0, A1)

Source§

impl<A0: RexType, A1: RexType, A2: RexType> RexType for (A0, A1, A2)

Source§

impl<A0: RexType, A1: RexType, A2: RexType, A3: RexType> RexType for (A0, A1, A2, A3)

Source§

impl<A0: RexType, A1: RexType, A2: RexType, A3: RexType, A4: RexType> RexType for (A0, A1, A2, A3, A4)

Source§

impl<A0: RexType, A1: RexType, A2: RexType, A3: RexType, A4: RexType, A5: RexType> RexType for (A0, A1, A2, A3, A4, A5)

Source§

impl<A0: RexType, A1: RexType, A2: RexType, A3: RexType, A4: RexType, A5: RexType, A6: RexType> RexType for (A0, A1, A2, A3, A4, A5, A6)

Source§

impl<A0: RexType, A1: RexType, A2: RexType, A3: RexType, A4: RexType, A5: RexType, A6: RexType, A7: RexType> RexType for (A0, A1, A2, A3, A4, A5, A6, A7)

Source§

impl<T: RexType> RexType for Option<T>

Source§

impl<T: RexType> RexType for Vec<T>

Source§

impl<T: RexType, E: RexType> RexType for Result<T, E>

Implementors§