#[repr(usize)]pub enum LanguageDirection {
Unknown = 0,
LeftToRight = 1,
RightToLeft = 2,
TopToBottom = 3,
BottomToTop = 4,
}Expand description
The directions that a language may take across a page of text.
Variants§
Unknown = 0
The direction of the language is unknown.
LeftToRight = 1
The language direction is from left to right.
RightToLeft = 2
The language direction is from right to left.
TopToBottom = 3
The language direction is from top to bottom.
BottomToTop = 4
The language direction is from bottom to top.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LanguageDirection
impl RefUnwindSafe for LanguageDirection
impl Send for LanguageDirection
impl Sync for LanguageDirection
impl Unpin for LanguageDirection
impl UnwindSafe for LanguageDirection
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