Trait geozero::PropertyReadType[][src]

pub trait PropertyReadType<T = Self> where
    T: PropertyReadType
{ fn get_value(v: &ColumnValue<'_>) -> Option<T>; }

Get property value as Rust type.

Required methods

fn get_value(v: &ColumnValue<'_>) -> Option<T>[src]

Get property value as Rust type.

Loading content...

Implementations on Foreign Types

impl PropertyReadType<i8> for i8[src]

impl PropertyReadType<u8> for u8[src]

impl PropertyReadType<bool> for bool[src]

impl PropertyReadType<i16> for i16[src]

impl PropertyReadType<u16> for u16[src]

impl PropertyReadType<i32> for i32[src]

impl PropertyReadType<u32> for u32[src]

impl PropertyReadType<i64> for i64[src]

impl PropertyReadType<u64> for u64[src]

impl PropertyReadType<f32> for f32[src]

impl PropertyReadType<f64> for f64[src]

impl PropertyReadType<String> for String[src]

Loading content...

Implementors

Loading content...