#[repr(C)]pub struct BNStringDetectionParameters {
pub minStringLength: usize,
pub utf8Enabled: bool,
pub utf16Enabled: bool,
pub utf32Enabled: bool,
pub unicodeBlockNames: *const *const c_char,
pub unicodeBlockNameCount: usize,
}Fields§
§minStringLength: usize§utf8Enabled: bool§utf16Enabled: bool§utf32Enabled: bool§unicodeBlockNames: *const *const c_charUnicode block names as accepted by the “analysis.unicode.blocks” setting.
unicodeBlockNameCount: usizeTrait Implementations§
Source§impl Clone for BNStringDetectionParameters
impl Clone for BNStringDetectionParameters
Source§fn clone(&self) -> BNStringDetectionParameters
fn clone(&self) -> BNStringDetectionParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BNStringDetectionParameters
impl Debug for BNStringDetectionParameters
impl Copy for BNStringDetectionParameters
Auto Trait Implementations§
impl Freeze for BNStringDetectionParameters
impl RefUnwindSafe for BNStringDetectionParameters
impl !Send for BNStringDetectionParameters
impl !Sync for BNStringDetectionParameters
impl Unpin for BNStringDetectionParameters
impl UnwindSafe for BNStringDetectionParameters
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more