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

Required Methods§

Safety

Get an value without doing bound checks.

Implementors§