#[non_exhaustive]pub enum BidiPairedBracketType {
Open,
Close,
None,
}
Expand description
The enum represents Bidi_Paired_Bracket_Type.
It does not implement EnumeratedProperty
, instead it can be obtained
through the bitpacked BidiMirroringGlyph
property.
If you have a use case this property without also needing the BidiMirroringGlyph
property, and need to optimize data size, please file an issue.
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
Represents Bidi_Paired_Bracket_Type=Open.
Close
Represents Bidi_Paired_Bracket_Type=Close.
None
Represents Bidi_Paired_Bracket_Type=None.
Trait Implementations§
Source§impl Clone for BidiPairedBracketType
impl Clone for BidiPairedBracketType
Source§fn clone(&self) -> BidiPairedBracketType
fn clone(&self) -> BidiPairedBracketType
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for BidiPairedBracketType
impl Debug for BidiPairedBracketType
Source§impl Default for BidiPairedBracketType
impl Default for BidiPairedBracketType
Source§fn default() -> BidiPairedBracketType
fn default() -> BidiPairedBracketType
Returns the “default value” for a type. Read more
Source§impl PartialEq for BidiPairedBracketType
impl PartialEq for BidiPairedBracketType
impl Copy for BidiPairedBracketType
impl Eq for BidiPairedBracketType
impl StructuralPartialEq for BidiPairedBracketType
Auto Trait Implementations§
impl Freeze for BidiPairedBracketType
impl RefUnwindSafe for BidiPairedBracketType
impl Send for BidiPairedBracketType
impl Sync for BidiPairedBracketType
impl Unpin for BidiPairedBracketType
impl UnwindSafe for BidiPairedBracketType
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