pub struct SelectListProps<'a, T, A> {
pub items: &'a [T],
pub count: usize,
pub selected: usize,
pub is_focused: bool,
pub style: SelectListStyle,
pub behavior: SelectListBehavior,
pub on_select: fn(usize) -> A,
pub render_item: &'a dyn Fn(&T) -> Line<'static>,
}Expand description
Props for SelectList component
Fields§
§items: &'a [T]Items to render
count: usizeTotal count (may differ from items.len() for virtual lists)
selected: usizeCurrently selected index
is_focused: boolWhether this component has focus
style: SelectListStyleUnified styling
behavior: SelectListBehaviorBehavior configuration
on_select: fn(usize) -> ACallback to create action when selection changes
render_item: &'a dyn Fn(&T) -> Line<'static>Render a single item into a Line
Implementations§
Auto Trait Implementations§
impl<'a, T, A> Freeze for SelectListProps<'a, T, A>
impl<'a, T, A> !RefUnwindSafe for SelectListProps<'a, T, A>
impl<'a, T, A> !Send for SelectListProps<'a, T, A>
impl<'a, T, A> !Sync for SelectListProps<'a, T, A>
impl<'a, T, A> Unpin for SelectListProps<'a, T, A>
impl<'a, T, A> UnsafeUnpin for SelectListProps<'a, T, A>
impl<'a, T, A> !UnwindSafe for SelectListProps<'a, T, A>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more