pub struct DualListSelectorProps<T: DualListSelectorItemRenderer> {
Show 23 fields pub class: Classes, pub available_options_title: Option<AttrValue>, pub available_options_status: Option<AttrValue>, pub available: Vec<T>, pub chosen_options_title: Option<AttrValue>, pub chosen_options_status: Option<AttrValue>, pub chosen: Vec<T>, pub add_selected_tooltip: Option<AttrValue>, pub add_selected_tooltip_props: Option<TooltipProperties>, pub add_selected: Option<Callback<(Vec<T>, Vec<T>)>>, pub add_all_available_tooltip: Option<AttrValue>, pub add_all_available_tooltip_props: Option<TooltipProperties>, pub add_all: Option<Callback<(Vec<T>, Vec<T>)>>, pub remove_selected_tooltip: Option<AttrValue>, pub remove_selected_tooltip_props: Option<TooltipProperties>, pub remove_selected: Option<Callback<(Vec<T>, Vec<T>)>>, pub remove_all_chosen_tooltip: Option<AttrValue>, pub remove_all_chosen_tooltip_props: Option<TooltipProperties>, pub remove_all: Option<Callback<(Vec<T>, Vec<T>)>>, pub onlistchange: Option<Callback<DualListSelectorOnListChangedInputs<T>>>, pub onoptionselect: Option<Callback<OnOptionSelectArgs>>, pub disabled: bool, pub children: Children,
}
Expand description

Acts as a container for all other DualListSelector sub-components when using a composable dual list selector.

Fields§

§class: Classes

Additional classes applied to the dual list selector.

§available_options_title: Option<AttrValue>

Title applied to the dynamically built available options pane.

§available_options_status: Option<AttrValue>

Status message to display above the dynamically built available options pane.

§available: Vec<T>

Options to display in the dynamically built available options pane.

§chosen_options_title: Option<AttrValue>

Title applied to the dynamically built chosen options pane.

§chosen_options_status: Option<AttrValue>

Status message to display above the dynamically built chosen options pane.

§chosen: Vec<T>

Options to display in the dynamically built chosen options pane.

§add_selected_tooltip: Option<AttrValue>

Tooltip content for the dynamically built add selected button.

§add_selected_tooltip_props: Option<TooltipProperties>

Additional tooltip properties to the dynamically built add selected tooltip.

§add_selected: Option<Callback<(Vec<T>, Vec<T>)>>

Optional callback for the dynamically built add selected button.

§add_all_available_tooltip: Option<AttrValue>

Tooltip content for the dynamically built add all button.

§add_all_available_tooltip_props: Option<TooltipProperties>

Additional tooltip properties to the dynamically built add all tooltip.

§add_all: Option<Callback<(Vec<T>, Vec<T>)>>

Optional callback for the dynamically built add all button.

§remove_selected_tooltip: Option<AttrValue>

Tooltip content for the dynamically built remove selected button.

§remove_selected_tooltip_props: Option<TooltipProperties>

Additional tooltip properties to the dynamically built remove selected tooltip.

§remove_selected: Option<Callback<(Vec<T>, Vec<T>)>>

Optional callback for the dynamically built remove selected button.

§remove_all_chosen_tooltip: Option<AttrValue>

Tooltip content for the dynamically built remove all button.

§remove_all_chosen_tooltip_props: Option<TooltipProperties>

Additional tooltip properties to the dynamically built remove selected tooltip.

§remove_all: Option<Callback<(Vec<T>, Vec<T>)>>

Optional callback for the dynamically built remove all button.

§onlistchange: Option<Callback<DualListSelectorOnListChangedInputs<T>>>

Callback fired every time dynamically built options are chosen or removed. Inputs are the mouse event as well as the available and chosen options after the change.

§onoptionselect: Option<Callback<OnOptionSelectArgs>>

Optional callback fired when a dynamically built option is selected.

§disabled: bool

Flag indicating if the dual list selector is in a disabled state

§children: Children

Content to be rendered in the dual list selector. Panes & controls will not be built dynamically when children are provided.

Trait Implementations§

source§

impl<T: Clone + DualListSelectorItemRenderer> Clone for DualListSelectorProps<T>

source§

fn clone(&self) -> DualListSelectorProps<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Debug + DualListSelectorItemRenderer> Debug for DualListSelectorProps<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: PartialEq + DualListSelectorItemRenderer> PartialEq for DualListSelectorProps<T>

source§

fn eq(&self, other: &DualListSelectorProps<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: DualListSelectorItemRenderer> Properties for DualListSelectorProps<T>

§

type Builder = DualListSelectorPropsBuilder<T>

Builder that will be used to construct properties
source§

fn builder() -> Self::Builder

Entrypoint for building properties
source§

impl<T: DualListSelectorItemRenderer> StructuralPartialEq for DualListSelectorProps<T>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoPropValue<Option<T>> for T

source§

fn into_prop_value(self) -> Option<T>

Convert self to a value of a Properties struct.
source§

impl<T> IntoPropValue<T> for T

source§

fn into_prop_value(self) -> T

Convert self to a value of a Properties struct.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithBreakpointExt<T> for T
where T: PartialEq,

source§

fn on(self, breakpoint: Breakpoint) -> WithBreakpoint<T>

source§

fn all(self) -> WithBreakpoint<T>

source§

fn sm(self) -> WithBreakpoint<T>

source§

fn md(self) -> WithBreakpoint<T>

source§

fn lg(self) -> WithBreakpoint<T>

source§

fn xl(self) -> WithBreakpoint<T>

source§

fn xxl(self) -> WithBreakpoint<T>

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<Token, Builder, How> AllPropsFor<Builder, How> for Token
where Builder: Buildable<Token>, <Builder as Buildable<Token>>::WrappedToken: HasAllProps<<Builder as Buildable<Token>>::Output, How>,

source§

impl<T> HasAllProps<(), T> for T