Resolver

trait Resolver: ArrowPrimitiveType {
    // Required method
    fn resolve(value: &Value) -> Option<Self::Native>;
}

Required Methods§

Source

fn resolve(value: &Value) -> Option<Self::Native>

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.

Implementors§

Source§

impl<N> Resolver for N
where N: ArrowNumericType, N::Native: NumCast,