#[non_exhaustive]pub struct IdContinue;Expand description
Characters that can come after the first character in an identifier.
If using NFKC to
fold differences between characters, use XidContinue instead.  See
Unicode Standard Annex #31 for
more details.
§Example
use icu::properties::CodePointSetData;
use icu::properties::props::IdContinue;
let id_continue = CodePointSetData::new::<IdContinue>();
assert!(id_continue.contains('x'));
assert!(id_continue.contains('1'));
assert!(id_continue.contains('_'));
assert!(id_continue.contains('ߝ'));  // U+07DD NKO LETTER FA
assert!(!id_continue.contains('ⓧ'));  // U+24E7 CIRCLED LATIN SMALL LETTER X
assert!(id_continue.contains('\u{FC5E}'));  // ARABIC LIGATURE SHADDA WITH DAMMATAN ISOLATED FORMTrait Implementations§
Source§impl BinaryProperty for IdContinue
 
impl BinaryProperty for IdContinue
Auto Trait Implementations§
impl Freeze for IdContinue
impl RefUnwindSafe for IdContinue
impl Send for IdContinue
impl Sync for IdContinue
impl Unpin for IdContinue
impl UnwindSafe for IdContinue
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