pub struct NCharView {
pub is_chars: UnsafeCell<bool>,
/* private fields */
}Fields§
§is_chars: UnsafeCell<bool>Implementations§
source§impl NCharView
impl NCharView
pub fn len(&self) -> usize
sourcepub unsafe fn is_null_unchecked(&self, row: usize) -> bool
pub unsafe fn is_null_unchecked(&self, row: usize) -> bool
Unsafe version for [methods.is_null]
pub unsafe fn nchar_to_utf8(&self)
sourcepub unsafe fn get_inline_str_unchecked(&self, row: usize) -> Option<&InlineStr>
pub unsafe fn get_inline_str_unchecked(&self, row: usize) -> Option<&InlineStr>
Get UTF-8 string at row.
In this method, InlineNChar will directly converted to InlineStr, which means v3 raw block will be changed in-place.
sourcepub unsafe fn get_unchecked(&self, row: usize) -> Option<&str>
pub unsafe fn get_unchecked(&self, row: usize) -> Option<&str>
Get UTF-8 string at row.