Skip to main content

GetAnyValue

Trait GetAnyValue 

Source
pub trait GetAnyValue {
    // Required method
    unsafe fn get_unchecked(&self, index: usize) -> AnyValue<'_>;
}

Required Methods§

Source

unsafe fn get_unchecked(&self, index: usize) -> AnyValue<'_>

§Safety

Get an value without doing bound checks.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl GetAnyValue for Box<dyn Array>

Source§

unsafe fn get_unchecked(&self, index: usize) -> AnyValue<'_>

Implementors§