pub enum ContainerWidth {
Narrow,
Standard,
Wide,
Full,
}Expand description
Width of the container. If not specified, the default width is standard.
Variants§
Trait Implementations§
Source§impl Clone for ContainerWidth
impl Clone for ContainerWidth
Source§fn clone(&self) -> ContainerWidth
fn clone(&self) -> ContainerWidth
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 moreimpl Copy for ContainerWidth
Source§impl Debug for ContainerWidth
impl Debug for ContainerWidth
Source§impl PartialEq for ContainerWidth
impl PartialEq for ContainerWidth
Source§fn eq(&self, other: &ContainerWidth) -> bool
fn eq(&self, other: &ContainerWidth) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContainerWidth
impl Serialize for ContainerWidth
impl StructuralPartialEq for ContainerWidth
Auto Trait Implementations§
impl Freeze for ContainerWidth
impl RefUnwindSafe for ContainerWidth
impl Send for ContainerWidth
impl Sync for ContainerWidth
impl Unpin for ContainerWidth
impl UnsafeUnpin for ContainerWidth
impl UnwindSafe for ContainerWidth
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