Struct icu_properties::bidi_data::BidiMirroringProperties
source · #[non_exhaustive]pub struct BidiMirroringProperties {
pub mirroring_glyph: Option<char>,
pub mirrored: bool,
}
Expand description
This struct represents the properties Bidi_Mirrored and Bidi_Mirroring_Glyph.
If Bidi_Mirroring_Glyph is not defined for a code point, then the value in the
struct is None
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.mirroring_glyph: Option<char>
Represents the Bidi_Mirroring_Glyph property value
mirrored: bool
Represents the Bidi_Mirrored property value
Trait Implementations§
source§impl Debug for BidiMirroringProperties
impl Debug for BidiMirroringProperties
source§impl PartialEq for BidiMirroringProperties
impl PartialEq for BidiMirroringProperties
source§fn eq(&self, other: &BidiMirroringProperties) -> bool
fn eq(&self, other: &BidiMirroringProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BidiMirroringProperties
impl StructuralPartialEq for BidiMirroringProperties
Auto Trait Implementations§
impl Freeze for BidiMirroringProperties
impl RefUnwindSafe for BidiMirroringProperties
impl Send for BidiMirroringProperties
impl Sync for BidiMirroringProperties
impl Unpin for BidiMirroringProperties
impl UnwindSafe for BidiMirroringProperties
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