pub enum RuntimeWidgetState {
InputCursor(usize),
List(ListState),
Tabs(Option<usize>),
Table(TableState),
ScrollView(Option<usize>),
Scrollbar(ScrollbarState),
}Variants§
InputCursor(usize)
List(ListState)
Tabs(Option<usize>)
Table(TableState)
ScrollView(Option<usize>)
Scrollbar(ScrollbarState)
Trait Implementations§
Source§impl Clone for RuntimeWidgetState
impl Clone for RuntimeWidgetState
Source§fn clone(&self) -> RuntimeWidgetState
fn clone(&self) -> RuntimeWidgetState
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 RuntimeWidgetState
Source§impl Debug for RuntimeWidgetState
impl Debug for RuntimeWidgetState
impl Eq for RuntimeWidgetState
Source§impl PartialEq for RuntimeWidgetState
impl PartialEq for RuntimeWidgetState
Source§fn eq(&self, other: &RuntimeWidgetState) -> bool
fn eq(&self, other: &RuntimeWidgetState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RuntimeWidgetState
Auto Trait Implementations§
impl Freeze for RuntimeWidgetState
impl RefUnwindSafe for RuntimeWidgetState
impl Send for RuntimeWidgetState
impl Sync for RuntimeWidgetState
impl Unpin for RuntimeWidgetState
impl UnsafeUnpin for RuntimeWidgetState
impl UnwindSafe for RuntimeWidgetState
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