#[non_exhaustive]pub enum TasklistAttrOrder {
DisabledFirst,
CheckedFirst,
}Expand description
The attribute order on disabled task-list checkbox inputs (an oracle-parity convention).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
DisabledFirst
Emit disabled="" before checked="" on disabled task-list inputs.
CheckedFirst
Emit checked="" before disabled="" on disabled task-list inputs.
Trait Implementations§
Source§impl Clone for TasklistAttrOrder
impl Clone for TasklistAttrOrder
Source§fn clone(&self) -> TasklistAttrOrder
fn clone(&self) -> TasklistAttrOrder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for TasklistAttrOrder
Source§impl Debug for TasklistAttrOrder
impl Debug for TasklistAttrOrder
impl Eq for TasklistAttrOrder
Source§impl PartialEq for TasklistAttrOrder
impl PartialEq for TasklistAttrOrder
Source§fn eq(&self, other: &TasklistAttrOrder) -> bool
fn eq(&self, other: &TasklistAttrOrder) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TasklistAttrOrder
Auto Trait Implementations§
impl Freeze for TasklistAttrOrder
impl RefUnwindSafe for TasklistAttrOrder
impl Send for TasklistAttrOrder
impl Sync for TasklistAttrOrder
impl Unpin for TasklistAttrOrder
impl UnsafeUnpin for TasklistAttrOrder
impl UnwindSafe for TasklistAttrOrder
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