#[non_exhaustive]pub enum BidiPairingProperties {
Open(char),
Close(char),
None,
}
Expand description
The enum represents Bidi_Paired_Bracket_Type, the char represents Bidi_Paired_Bracket.
Bidi_Paired_Bracket has a value of None
when Bidi_Paired_Bracket_Type is None
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Open(char)
Represents Bidi_Paired_Bracket_Type=Open, and the Bidi_Paired_Bracket value for that code point.
Close(char)
Represents Bidi_Paired_Bracket_Type=Close, and the Bidi_Paired_Bracket value for that code point.
None
Represents Bidi_Paired_Bracket_Type=None, which cooccurs with Bidi_Paired_Bracket being undefined for that code point.
Trait Implementations§
source§impl Debug for BidiPairingProperties
impl Debug for BidiPairingProperties
source§impl PartialEq for BidiPairingProperties
impl PartialEq for BidiPairingProperties
source§fn eq(&self, other: &BidiPairingProperties) -> bool
fn eq(&self, other: &BidiPairingProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BidiPairingProperties
impl StructuralPartialEq for BidiPairingProperties
Auto Trait Implementations§
impl Freeze for BidiPairingProperties
impl RefUnwindSafe for BidiPairingProperties
impl Send for BidiPairingProperties
impl Sync for BidiPairingProperties
impl Unpin for BidiPairingProperties
impl UnwindSafe for BidiPairingProperties
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