#[non_exhaustive]pub struct DefaultIgnorableCodePoint;Expand description
For programmatic determination of default ignorable code points.
New characters that should be ignored in rendering (unless explicitly supported) will be assigned in these ranges, permitting programs to correctly handle the default rendering of such characters when not otherwise supported.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::DefaultIgnorableCodePoint;
let default_ignorable_code_point = CodePointSetData::new::<DefaultIgnorableCodePoint>();
assert!(default_ignorable_code_point.contains('\u{180B}')); // MONGOLIAN FREE VARIATION SELECTOR ONE
assert!(!default_ignorable_code_point.contains('E'));