Trait zng_wgt_toggle::SelectorImpl
source · pub trait SelectorImpl: Send + 'static {
// Required methods
fn subscribe(&self);
fn select(
&mut self,
value: Box<dyn AnyVarValue>,
) -> Result<(), SelectorError>;
fn deselect(&mut self, value: &dyn AnyVarValue) -> Result<(), SelectorError>;
fn is_selected(&self, value: &dyn AnyVarValue) -> bool;
}
Expand description
Represents a Selector
implementation.
Required Methods§
sourcefn select(&mut self, value: Box<dyn AnyVarValue>) -> Result<(), SelectorError>
fn select(&mut self, value: Box<dyn AnyVarValue>) -> Result<(), SelectorError>
Insert the value
in the selection, returns Ok(())
if the value was inserted or was already selected.
sourcefn deselect(&mut self, value: &dyn AnyVarValue) -> Result<(), SelectorError>
fn deselect(&mut self, value: &dyn AnyVarValue) -> Result<(), SelectorError>
Remove the value
from the selection, returns Ok(())
if the value was removed or was not selected.
sourcefn is_selected(&self, value: &dyn AnyVarValue) -> bool
fn is_selected(&self, value: &dyn AnyVarValue) -> bool
Returns true
if the value
is selected.