#[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<'de> Deserialize<'de> for BidiPairedBracketType
 
impl<'de> Deserialize<'de> for BidiPairedBracketType
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<BidiPairedBracketType, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<BidiPairedBracketType, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
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