pub enum PaneDirection {
Left,
Right,
Up,
Down,
}Variants§
Trait Implementations§
Source§impl Clone for PaneDirection
impl Clone for PaneDirection
Source§fn clone(&self) -> PaneDirection
fn clone(&self) -> PaneDirection
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 PaneDirection
Source§impl Debug for PaneDirection
impl Debug for PaneDirection
Source§impl<'de> Deserialize<'de> for PaneDirection
impl<'de> Deserialize<'de> for PaneDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PaneDirection
Source§impl PartialEq for PaneDirection
impl PartialEq for PaneDirection
Source§fn eq(&self, other: &PaneDirection) -> bool
fn eq(&self, other: &PaneDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PaneDirection
impl Serialize for PaneDirection
impl StructuralPartialEq for PaneDirection
Auto Trait Implementations§
impl Freeze for PaneDirection
impl RefUnwindSafe for PaneDirection
impl Send for PaneDirection
impl Sync for PaneDirection
impl Unpin for PaneDirection
impl UnsafeUnpin for PaneDirection
impl UnwindSafe for PaneDirection
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