Struct icu::properties::props::WhiteSpace
source · #[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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more