pub enum GridPinned {
Left,
Right,
None,
}Expand description
Grid column pin side.
Variants§
Trait Implementations§
Source§impl Clone for GridPinned
impl Clone for GridPinned
Source§fn clone(&self) -> GridPinned
fn clone(&self) -> GridPinned
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 moreSource§impl Debug for GridPinned
impl Debug for GridPinned
Source§impl Default for GridPinned
impl Default for GridPinned
Source§fn default() -> GridPinned
fn default() -> GridPinned
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GridPinned
impl<'de> Deserialize<'de> for GridPinned
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
Source§impl PartialEq for GridPinned
impl PartialEq for GridPinned
Source§fn eq(&self, other: &GridPinned) -> bool
fn eq(&self, other: &GridPinned) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GridPinned
impl Serialize for GridPinned
impl Copy for GridPinned
impl Eq for GridPinned
impl StructuralPartialEq for GridPinned
Auto Trait Implementations§
impl Freeze for GridPinned
impl RefUnwindSafe for GridPinned
impl Send for GridPinned
impl Sync for GridPinned
impl Unpin for GridPinned
impl UnsafeUnpin for GridPinned
impl UnwindSafe for GridPinned
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