Enum rust_icu_sys::ULayoutType
source · #[repr(u32)]pub enum ULayoutType {
ULOC_LAYOUT_LTR = 0,
ULOC_LAYOUT_RTL = 1,
ULOC_LAYOUT_TTB = 2,
ULOC_LAYOUT_BTT = 3,
ULOC_LAYOUT_UNKNOWN = 4,
}
Variants§
ULOC_LAYOUT_LTR = 0
ULOC_LAYOUT_RTL = 1
ULOC_LAYOUT_TTB = 2
ULOC_LAYOUT_BTT = 3
ULOC_LAYOUT_UNKNOWN = 4
Trait Implementations§
source§impl Clone for ULayoutType
impl Clone for ULayoutType
source§fn clone(&self) -> ULayoutType
fn clone(&self) -> ULayoutType
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 ULayoutType
impl Debug for ULayoutType
source§impl Hash for ULayoutType
impl Hash for ULayoutType
source§impl PartialEq for ULayoutType
impl PartialEq for ULayoutType
source§fn eq(&self, other: &ULayoutType) -> bool
fn eq(&self, other: &ULayoutType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for ULayoutType
impl PartialOrd for ULayoutType
source§fn partial_cmp(&self, other: &ULayoutType) -> Option<Ordering>
fn partial_cmp(&self, other: &ULayoutType) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ULayoutType
impl Eq for ULayoutType
impl StructuralPartialEq for ULayoutType
Auto Trait Implementations§
impl RefUnwindSafe for ULayoutType
impl Send for ULayoutType
impl Sync for ULayoutType
impl Unpin for ULayoutType
impl UnwindSafe for ULayoutType
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