pub enum Overflow {
Visible,
Hidden,
}Expand description
The overflow keyword. Lynx supports only two values —
visible (default) and hidden. CSS’s scroll and auto are
not supported; use a <scroll-view> element for scrolling.
Variants§
Visible
visible — content overflows the box. Default.
Hidden
hidden — content is clipped to the box.
Trait Implementations§
impl Copy for Overflow
impl Eq for Overflow
impl StructuralPartialEq for Overflow
Auto Trait Implementations§
impl Freeze for Overflow
impl RefUnwindSafe for Overflow
impl Send for Overflow
impl Sync for Overflow
impl Unpin for Overflow
impl UnsafeUnpin for Overflow
impl UnwindSafe for Overflow
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