#[repr(u32)]pub enum OrientationType {
Undefined = 0,
TopLeft = 1,
TopRight = 2,
BottomRight = 3,
BottomLeft = 4,
LeftTop = 5,
RightTop = 6,
RightBottom = 7,
LeftBottom = 8,
}
Variants§
Undefined = 0
TopLeft = 1
TopRight = 2
BottomRight = 3
BottomLeft = 4
LeftTop = 5
RightTop = 6
RightBottom = 7
LeftBottom = 8
Trait Implementations§
Source§impl Clone for OrientationType
impl Clone for OrientationType
Source§fn clone(&self) -> OrientationType
fn clone(&self) -> OrientationType
Returns a duplicate 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 OrientationType
impl Debug for OrientationType
Source§impl Hash for OrientationType
impl Hash for OrientationType
Source§impl PartialEq for OrientationType
impl PartialEq for OrientationType
impl Copy for OrientationType
impl Eq for OrientationType
impl StructuralPartialEq for OrientationType
Auto Trait Implementations§
impl Freeze for OrientationType
impl RefUnwindSafe for OrientationType
impl Send for OrientationType
impl Sync for OrientationType
impl Unpin for OrientationType
impl UnwindSafe for OrientationType
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