pub struct ChunkedUtf8ValidatorImp { /* private fields */ }
Expand description
Low-level implementation of the basic::imp::ChunkedUtf8Validator
trait.
This is implementation requires CPU SIMD features specified by the module it resides in. It is undefined behavior to call it if the required CPU features are not available.
Trait Implementations§
source§impl ChunkedUtf8Validator for ChunkedUtf8ValidatorImp
impl ChunkedUtf8Validator for ChunkedUtf8ValidatorImp
source§unsafe fn update_from_chunks(&mut self, input: &[u8])
unsafe fn update_from_chunks(&mut self, input: &[u8])
Updates the validator with
input
. Read more