#[non_exhaustive]pub enum GridPosition {
Left,
Right,
Top,
Bottom,
}
Expand description
Grid position modes.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for GridPosition
impl Clone for GridPosition
Source§fn clone(&self) -> GridPosition
fn clone(&self) -> GridPosition
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 GridPosition
impl Debug for GridPosition
Source§impl Display for GridPosition
impl Display for GridPosition
Source§impl<'a> FromValue<'a> for GridPosition
impl<'a> FromValue<'a> for GridPosition
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for GridPosition
impl<'a> FromValueOptional<'a> for GridPosition
Source§impl Hash for GridPosition
impl Hash for GridPosition
Source§impl Ord for GridPosition
impl Ord for GridPosition
Source§fn cmp(&self, other: &GridPosition) -> Ordering
fn cmp(&self, other: &GridPosition) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for GridPosition
impl PartialEq for GridPosition
Source§impl PartialOrd for GridPosition
impl PartialOrd for GridPosition
Source§impl SetValue for GridPosition
impl SetValue for GridPosition
Source§impl StaticType for GridPosition
impl StaticType for GridPosition
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for GridPosition
impl Eq for GridPosition
impl StructuralPartialEq for GridPosition
Auto Trait Implementations§
impl Freeze for GridPosition
impl RefUnwindSafe for GridPosition
impl Send for GridPosition
impl Sync for GridPosition
impl Unpin for GridPosition
impl UnwindSafe for GridPosition
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.