pub enum Handle<Font> {
Arrow {
size: Option<Pixels>,
},
Static(Icon<Font>),
Dynamic {
closed: Icon<Font>,
open: Icon<Font>,
},
None,
}Expand description
The handle to the right side of the PickList.
Variants§
Arrow
Displays an arrow icon (▼).
This is the default.
Static(Icon<Font>)
A custom static handle.
Dynamic
A custom dynamic handle.
Fields
None
No handle will be shown.
Trait Implementations§
impl<Font> StructuralPartialEq for Handle<Font>
Auto Trait Implementations§
impl<Font> Freeze for Handle<Font>where
Font: Freeze,
impl<Font> RefUnwindSafe for Handle<Font>where
Font: RefUnwindSafe,
impl<Font> Send for Handle<Font>where
Font: Send,
impl<Font> Sync for Handle<Font>where
Font: Sync,
impl<Font> Unpin for Handle<Font>where
Font: Unpin,
impl<Font> UnsafeUnpin for Handle<Font>where
Font: UnsafeUnpin,
impl<Font> UnwindSafe for Handle<Font>where
Font: UnwindSafe,
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