Trait kudu::Value
[−]
[src]
pub trait Value<'a>: Sized { }
Marker trait for types which can be stored in a Kudu column.
Implementors
impl<'a> Value<'a> for bool
impl<'a> Value<'a> for i8
impl<'a> Value<'a> for i16
impl<'a> Value<'a> for i32
impl<'a> Value<'a> for i64
impl<'a> Value<'a> for SystemTime
impl<'a> Value<'a> for f32
impl<'a> Value<'a> for f64
impl<'a> Value<'a> for &'a [u8]
impl<'a> Value<'a> for Vec<u8>
impl<'a> Value<'a> for &'a str
impl<'a> Value<'a> for String
impl<'a, V> Value<'a> for Option<V> where V: Value<'a>