pub struct UnicodeBlocks;Expand description
Named Unicode character blocks relevant to OxiLean.
Implementations§
Source§impl UnicodeBlocks
impl UnicodeBlocks
Sourcepub const BASIC_LATIN: CharRange
pub const BASIC_LATIN: CharRange
Basic Latin (ASCII range).
Sourcepub const LATIN1_SUPPLEMENT: CharRange
pub const LATIN1_SUPPLEMENT: CharRange
Latin-1 Supplement.
Sourcepub const MATH_OPERATORS: CharRange
pub const MATH_OPERATORS: CharRange
Mathematical Operators.
Sourcepub const SUPP_MATH_OPERATORS: CharRange
pub const SUPP_MATH_OPERATORS: CharRange
Supplemental Mathematical Operators.
Sourcepub const MATH_ALPHANUMERIC: CharRange
pub const MATH_ALPHANUMERIC: CharRange
Mathematical Alphanumeric Symbols.
Sourcepub const LETTERLIKE: CharRange
pub const LETTERLIKE: CharRange
Letterlike Symbols.
Sourcepub fn is_math_operator(cp: u32) -> bool
pub fn is_math_operator(cp: u32) -> bool
Check if a code point is in the mathematical operators range.
Auto Trait Implementations§
impl Freeze for UnicodeBlocks
impl RefUnwindSafe for UnicodeBlocks
impl Send for UnicodeBlocks
impl Sync for UnicodeBlocks
impl Unpin for UnicodeBlocks
impl UnsafeUnpin for UnicodeBlocks
impl UnwindSafe for UnicodeBlocks
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