#[repr(u8)]pub enum SizingType {
Fit = 0,
Grow = 1,
Percent = 2,
Fixed = 3,
}Variants§
Trait Implementations§
Source§impl Clone for SizingType
impl Clone for SizingType
Source§fn clone(&self) -> SizingType
fn clone(&self) -> SizingType
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 SizingType
impl Debug for SizingType
Source§impl Default for SizingType
impl Default for SizingType
Source§fn default() -> SizingType
fn default() -> SizingType
Returns the “default value” for a type. Read more
Source§impl PartialEq for SizingType
impl PartialEq for SizingType
impl Copy for SizingType
impl Eq for SizingType
impl StructuralPartialEq for SizingType
Auto Trait Implementations§
impl Freeze for SizingType
impl RefUnwindSafe for SizingType
impl Send for SizingType
impl Sync for SizingType
impl Unpin for SizingType
impl UnsafeUnpin for SizingType
impl UnwindSafe for SizingType
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.