pub struct FormControlState {
pub value: String,
pub checked: bool,
pub indeterminate: bool,
}Fields§
§value: String§checked: bool§indeterminate: boolTrait Implementations§
Source§impl Clone for FormControlState
impl Clone for FormControlState
Source§fn clone(&self) -> FormControlState
fn clone(&self) -> FormControlState
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 FormControlState
impl Debug for FormControlState
Source§impl Default for FormControlState
impl Default for FormControlState
Source§fn default() -> FormControlState
fn default() -> FormControlState
Returns the “default value” for a type. Read more
Source§impl PartialEq for FormControlState
impl PartialEq for FormControlState
impl Eq for FormControlState
impl StructuralPartialEq for FormControlState
Auto Trait Implementations§
impl Freeze for FormControlState
impl RefUnwindSafe for FormControlState
impl Send for FormControlState
impl Sync for FormControlState
impl Unpin for FormControlState
impl UnsafeUnpin for FormControlState
impl UnwindSafe for FormControlState
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