Struct material_yew::radio::RadioProps
source · pub struct RadioProps {
pub checked: bool,
pub disabled: bool,
pub name: Option<AttrValue>,
pub value: Option<AttrValue>,
pub global: bool,
pub reduced_touch_target: bool,
pub onchange: Callback<bool>,
}
Expand description
Fields§
§checked: bool
§disabled: bool
§name: Option<AttrValue>
§value: Option<AttrValue>
§global: bool
§reduced_touch_target: bool
§onchange: Callback<bool>
Binds to change
.
Callback’s parameter of type denotes if the radio is checked or not.
See events docs to learn more.
Trait Implementations§
source§impl Clone for RadioProps
impl Clone for RadioProps
source§fn clone(&self) -> RadioProps
fn clone(&self) -> RadioProps
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RadioProps
impl Debug for RadioProps
source§impl PartialEq<RadioProps> for RadioProps
impl PartialEq<RadioProps> for RadioProps
source§fn eq(&self, other: &RadioProps) -> bool
fn eq(&self, other: &RadioProps) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Properties for RadioProps
impl Properties for RadioProps
impl StructuralPartialEq for RadioProps
Auto Trait Implementations§
impl !RefUnwindSafe for RadioProps
impl !Send for RadioProps
impl !Sync for RadioProps
impl Unpin for RadioProps
impl !UnwindSafe for RadioProps
Blanket Implementations§
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>
§impl<T> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self
to a value of a Properties
struct.§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self
to a value of a Properties
struct.