pub enum MenuHeaderMode {
TopFixed,
TopUnfixed,
BottomFixed,
}Expand description
Position of the header bar within the Menu bounds.
Registration policy: Specification Required (LPAR-13 §7).
Variants§
TopFixed
Header bar pinned to the top of the widget (default).
TopUnfixed
Header bar at the top but scrolls with content (deferred-Safe in v1;
behaves as TopFixed pending LPAR-05 ObjectNode integration).
BottomFixed
Header bar pinned to the bottom of the widget.
Trait Implementations§
Source§impl Clone for MenuHeaderMode
impl Clone for MenuHeaderMode
Source§fn clone(&self) -> MenuHeaderMode
fn clone(&self) -> MenuHeaderMode
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 MenuHeaderMode
Source§impl Debug for MenuHeaderMode
impl Debug for MenuHeaderMode
impl Eq for MenuHeaderMode
Source§impl PartialEq for MenuHeaderMode
impl PartialEq for MenuHeaderMode
impl StructuralPartialEq for MenuHeaderMode
Auto Trait Implementations§
impl Freeze for MenuHeaderMode
impl RefUnwindSafe for MenuHeaderMode
impl Send for MenuHeaderMode
impl Sync for MenuHeaderMode
impl Unpin for MenuHeaderMode
impl UnsafeUnpin for MenuHeaderMode
impl UnwindSafe for MenuHeaderMode
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