#[non_exhaustive]pub enum BinAlignment {
Fixed,
Fill,
Start,
End,
Center,
}
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 BinAlignment
impl Clone for BinAlignment
Source§fn clone(&self) -> BinAlignment
fn clone(&self) -> BinAlignment
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 BinAlignment
impl Debug for BinAlignment
Source§impl Display for BinAlignment
impl Display for BinAlignment
Source§impl<'a> FromValue<'a> for BinAlignment
impl<'a> FromValue<'a> for BinAlignment
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for BinAlignment
impl<'a> FromValueOptional<'a> for BinAlignment
Source§impl Hash for BinAlignment
impl Hash for BinAlignment
Source§impl Ord for BinAlignment
impl Ord for BinAlignment
Source§fn cmp(&self, other: &BinAlignment) -> Ordering
fn cmp(&self, other: &BinAlignment) -> 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 BinAlignment
impl PartialEq for BinAlignment
Source§impl PartialOrd for BinAlignment
impl PartialOrd for BinAlignment
Source§impl SetValue for BinAlignment
impl SetValue for BinAlignment
Source§impl StaticType for BinAlignment
impl StaticType for BinAlignment
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for BinAlignment
impl Eq for BinAlignment
impl StructuralPartialEq for BinAlignment
Auto Trait Implementations§
impl Freeze for BinAlignment
impl RefUnwindSafe for BinAlignment
impl Send for BinAlignment
impl Sync for BinAlignment
impl Unpin for BinAlignment
impl UnwindSafe for BinAlignment
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
.