pub struct MultiListSelectProps<T>{
pub items: Vec<T>,
pub on_select: Handler<'static, Vec<T>>,
pub top_title: Option<Line<'static>>,
pub bottom_title: Option<Line<'static>>,
pub is_editing: bool,
pub render_item: RenderItem<'static>,
pub empty_message: String,
pub state: Option<State<HashSet<usize>>>,
pub loading: bool,
pub loading_tip: String,
}Fields§
§items: Vec<T>§on_select: Handler<'static, Vec<T>>§top_title: Option<Line<'static>>§bottom_title: Option<Line<'static>>§is_editing: bool§render_item: RenderItem<'static>§empty_message: String§state: Option<State<HashSet<usize>>>§loading: bool§loading_tip: StringTrait Implementations§
Source§impl<T> Default for MultiListSelectProps<T>
impl<T> Default for MultiListSelectProps<T>
impl<T> Props for MultiListSelectProps<T>
Auto Trait Implementations§
impl<T> Freeze for MultiListSelectProps<T>
impl<T> !RefUnwindSafe for MultiListSelectProps<T>
impl<T> Send for MultiListSelectProps<T>
impl<T> Sync for MultiListSelectProps<T>
impl<T> Unpin for MultiListSelectProps<T>where
T: Unpin,
impl<T> !UnwindSafe for MultiListSelectProps<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<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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