#[non_exhaustive]pub struct WhiteSpace;
Expand description
Spaces, separator characters and other control characters which should be treated by programming languages as “white space” for the purpose of parsing elements.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::WhiteSpace;
let white_space = CodePointSetData::new::<WhiteSpace>();
assert!(white_space.contains(' '));
assert!(white_space.contains('\u{000A}')); // NEW LINE
assert!(white_space.contains('\u{00A0}')); // NO-BREAK SPACE
assert!(!white_space.contains('\u{200B}')); // ZERO WIDTH SPACE
Trait Implementations§
Source§impl BinaryProperty for WhiteSpace
impl BinaryProperty for WhiteSpace
Auto Trait Implementations§
impl Freeze for WhiteSpace
impl RefUnwindSafe for WhiteSpace
impl Send for WhiteSpace
impl Sync for WhiteSpace
impl Unpin for WhiteSpace
impl UnwindSafe for WhiteSpace
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