#[non_exhaustive]pub struct JoinControl;Expand description
Format control characters which have specific functions for control of cursive joining and ligation.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::JoinControl;
let join_control = CodePointSetData::new::<JoinControl>();
assert!(join_control.contains('\u{200C}'));  // ZERO WIDTH NON-JOINER
assert!(join_control.contains('\u{200D}'));  // ZERO WIDTH JOINER
assert!(!join_control.contains('\u{200E}'));Trait Implementations§
Source§impl BinaryProperty for JoinControl
 
impl BinaryProperty for JoinControl
Auto Trait Implementations§
impl Freeze for JoinControl
impl RefUnwindSafe for JoinControl
impl Send for JoinControl
impl Sync for JoinControl
impl Unpin for JoinControl
impl UnwindSafe for JoinControl
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