pub enum LayoutOverflow {
Auto,
Scroll,
Expand,
Squash,
Wrap {
grid: bool,
},
Hidden,
}
Variants§
Trait Implementations§
Source§impl Arbitrary for LayoutOverflow
impl Arbitrary for LayoutOverflow
Source§impl Clone for LayoutOverflow
impl Clone for LayoutOverflow
Source§fn clone(&self) -> LayoutOverflow
fn clone(&self) -> LayoutOverflow
Returns a copy 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 LayoutOverflow
impl Debug for LayoutOverflow
Source§impl Default for LayoutOverflow
impl Default for LayoutOverflow
Source§fn default() -> LayoutOverflow
fn default() -> LayoutOverflow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayoutOverflow
impl<'de> Deserialize<'de> for LayoutOverflow
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 Display for LayoutOverflow
impl Display for LayoutOverflow
Source§impl PartialEq for LayoutOverflow
impl PartialEq for LayoutOverflow
Source§impl Serialize for LayoutOverflow
impl Serialize for LayoutOverflow
impl Copy for LayoutOverflow
impl Eq for LayoutOverflow
impl StructuralPartialEq for LayoutOverflow
Auto Trait Implementations§
impl Freeze for LayoutOverflow
impl RefUnwindSafe for LayoutOverflow
impl Send for LayoutOverflow
impl Sync for LayoutOverflow
impl Unpin for LayoutOverflow
impl UnwindSafe for LayoutOverflow
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