#[repr(usize)]pub enum DockAlignment {
Top = 0,
Bottom = 1,
Left = 2,
Right = 3,
Center = 4,
}Variants§
Implementations§
Source§impl DockAlignment
impl DockAlignment
Trait Implementations§
Source§impl Clone for DockAlignment
impl Clone for DockAlignment
Source§fn clone(&self) -> DockAlignment
fn clone(&self) -> DockAlignment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DockAlignment
Source§impl Debug for DockAlignment
impl Debug for DockAlignment
Source§impl PartialEq for DockAlignment
impl PartialEq for DockAlignment
impl StructuralPartialEq for DockAlignment
Auto Trait Implementations§
impl Freeze for DockAlignment
impl RefUnwindSafe for DockAlignment
impl Send for DockAlignment
impl Sync for DockAlignment
impl Unpin for DockAlignment
impl UnsafeUnpin for DockAlignment
impl UnwindSafe for DockAlignment
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