m3e/pseudo_radio
PseudoRadio is an element which looks like a radio button.
This file was generated by m3e/generator
DO NOT EDIT
Types
Checked is a value indicating whether the element is checked.
pub type Checked {
IsChecked
IsNotChecked
}
Constructors
-
IsChecked -
IsNotChecked
Disabled is a value indicating whether the element is disabled.
pub type Disabled {
IsDisabled
IsNotDisabled
}
Constructors
-
IsDisabled -
IsNotDisabled
PseudoRadio is a View Model for this component
Fields:
- checked: A value indicating whether the element is checked.
- disabled: A value indicating whether the element is disabled.
pub opaque type PseudoRadio
Values
pub fn checked(
record: PseudoRadio,
checked: Checked,
) -> PseudoRadio
checked sets the value of checked for this PseudoRadio.
pub const default_checked: Checked
pub fn default_config() -> Config
default_config is the default configuration for this component.
pub const default_disabled: Disabled
pub fn disabled(
record: PseudoRadio,
disabled: Disabled,
) -> PseudoRadio
disabled sets the value of disabled for this PseudoRadio.
pub fn from_config(config: Config) -> PseudoRadio
from_config creates a new PseudoRadio from the given configuration.
pub fn render(
model: PseudoRadio,
attributes: List(attribute.Attribute(msg)),
) -> element.Element(msg)
render creates a Lustre Element for a PseudoRadio
pub fn render_config(
c: Config,
attributes: List(attribute.Attribute(msg)),
) -> element.Element(msg)
render_config creates a Lustre Element from a PseudoRadio Config