Struct WhiteSpace
struct WhiteSpace
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 CodePointSetData;
use WhiteSpace;
let white_space = ;
assert!;
assert!; // NEW LINE
assert!; // NO-BREAK SPACE
assert!; // ZERO WIDTH SPACE
Implementations
impl BinaryProperty for WhiteSpace
impl Debug for WhiteSpace
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl Freeze for WhiteSpace
impl RefUnwindSafe for WhiteSpace
impl Send for WhiteSpace
impl Sync for WhiteSpace
impl Unpin for WhiteSpace
impl UnsafeUnpin for WhiteSpace
impl UnwindSafe for WhiteSpace
impl<T> Any for WhiteSpace
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for WhiteSpace
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for WhiteSpace
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> ErasedDestructor for WhiteSpace
impl<T> From for WhiteSpace
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for WhiteSpace
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for WhiteSpace
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for WhiteSpace
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>