pub struct CheckboxRenderAsProps {
pub children: Children,
pub ref: NodeRef,
pub id: Option<AttrValue>,
pub class: Option<AttrValue>,
pub checked: CheckedState,
pub toggle: Callback<()>,
pub disabled: bool,
pub required: bool,
pub name: Option<AttrValue>,
pub value: Option<AttrValue>,
pub readonly: bool,
}
Fields§
§children: Children
§ref: NodeRef
§id: Option<AttrValue>
§class: Option<AttrValue>
§checked: CheckedState
§toggle: Callback<()>
§disabled: bool
§required: bool
§name: Option<AttrValue>
§value: Option<AttrValue>
§readonly: bool
Trait Implementations§
Source§impl Clone for CheckboxRenderAsProps
impl Clone for CheckboxRenderAsProps
Source§fn clone(&self) -> CheckboxRenderAsProps
fn clone(&self) -> CheckboxRenderAsProps
Returns a duplicate 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 CheckboxRenderAsProps
impl Debug for CheckboxRenderAsProps
Source§impl PartialEq for CheckboxRenderAsProps
impl PartialEq for CheckboxRenderAsProps
Source§impl Properties for CheckboxRenderAsProps
impl Properties for CheckboxRenderAsProps
impl StructuralPartialEq for CheckboxRenderAsProps
Auto Trait Implementations§
impl Freeze for CheckboxRenderAsProps
impl !RefUnwindSafe for CheckboxRenderAsProps
impl !Send for CheckboxRenderAsProps
impl !Sync for CheckboxRenderAsProps
impl Unpin for CheckboxRenderAsProps
impl !UnwindSafe for CheckboxRenderAsProps
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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> IntoPropValue<Option<T>> for T
impl<T> IntoPropValue<Option<T>> for T
Source§fn into_prop_value(self) -> Option<T>
fn into_prop_value(self) -> Option<T>
Convert
self
to a value of a Properties
struct.Source§impl<T> IntoPropValue<T> for T
impl<T> IntoPropValue<T> for T
Source§fn into_prop_value(self) -> T
fn into_prop_value(self) -> T
Convert
self
to a value of a Properties
struct.