pub enum NavbarExpand {
Always,
Sm,
Md,
Lg,
Xl,
Xxl,
}Expand description
Navbar expand breakpoint.
Determines at which screen size the navbar expands from collapsed to horizontal.
Variants§
Always
Always expanded (navbar-expand)
Sm
Expand at small breakpoint (navbar-expand-sm)
Md
Expand at medium breakpoint (navbar-expand-md)
Lg
Expand at large breakpoint (navbar-expand-lg) - most common
Xl
Expand at extra large breakpoint (navbar-expand-xl)
Xxl
Expand at extra extra large breakpoint (navbar-expand-xxl)
Implementations§
Trait Implementations§
Source§fn clone(&self) -> NavbarExpand
fn clone(&self) -> NavbarExpand
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§fn default() -> NavbarExpand
fn default() -> NavbarExpand
Returns the “default value” for a type. Read more
Auto Trait Implementations§
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