pub struct SelectListRenderProps<'a, T> {
pub items: &'a [T],
pub count: usize,
pub selected: usize,
pub is_focused: bool,
pub style: SelectListStyle,
pub behavior: SelectListBehavior,
pub render_item: &'a dyn Fn(&T) -> Line<'static>,
}Expand description
Render-only props for SelectList
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
render_item: &'a dyn Fn(&T) -> Line<'static>Render a single item into a Line
Auto Trait Implementations§
impl<'a, T> Freeze for SelectListRenderProps<'a, T>
impl<'a, T> !RefUnwindSafe for SelectListRenderProps<'a, T>
impl<'a, T> !Send for SelectListRenderProps<'a, T>
impl<'a, T> !Sync for SelectListRenderProps<'a, T>
impl<'a, T> Unpin for SelectListRenderProps<'a, T>
impl<'a, T> UnsafeUnpin for SelectListRenderProps<'a, T>
impl<'a, T> !UnwindSafe for SelectListRenderProps<'a, T>
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