#[repr(C)]pub enum ToolbarStyle {
IconsOnly = 0,
TextOnly = 1,
TextBesideIcon = 2,
TextBelowIcon = 3,
}Expand description
Toolbar display style (icons, text, or both).
Variants§
IconsOnly = 0
Show only icons in toolbars.
TextOnly = 1
Show only text labels in toolbars.
TextBesideIcon = 2
Show text beside the icon (horizontal).
TextBelowIcon = 3
Show text below the icon (vertical).
Trait Implementations§
Source§impl Clone for ToolbarStyle
impl Clone for ToolbarStyle
Source§fn clone(&self) -> ToolbarStyle
fn clone(&self) -> ToolbarStyle
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 ToolbarStyle
impl Debug for ToolbarStyle
Source§impl Default for ToolbarStyle
impl Default for ToolbarStyle
Source§fn default() -> ToolbarStyle
fn default() -> ToolbarStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for ToolbarStyle
impl PartialEq for ToolbarStyle
impl Copy for ToolbarStyle
impl Eq for ToolbarStyle
impl StructuralPartialEq for ToolbarStyle
Auto Trait Implementations§
impl Freeze for ToolbarStyle
impl RefUnwindSafe for ToolbarStyle
impl Send for ToolbarStyle
impl Sync for ToolbarStyle
impl Unpin for ToolbarStyle
impl UnsafeUnpin for ToolbarStyle
impl UnwindSafe for ToolbarStyle
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