pub enum InputSecurityStyleValue {
Auto(Ident),
None(Ident),
}Expand description
Represents the style value for input-security as defined in css-forms-1.
The grammar is defined as:
auto | noneVariants§
Trait Implementations§
Source§impl Clone for InputSecurityStyleValue
impl Clone for InputSecurityStyleValue
Source§fn clone(&self) -> InputSecurityStyleValue
fn clone(&self) -> InputSecurityStyleValue
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 InputSecurityStyleValue
impl Debug for InputSecurityStyleValue
Source§impl Hash for InputSecurityStyleValue
impl Hash for InputSecurityStyleValue
Source§impl Ord for InputSecurityStyleValue
impl Ord for InputSecurityStyleValue
Source§fn cmp(&self, other: &InputSecurityStyleValue) -> Ordering
fn cmp(&self, other: &InputSecurityStyleValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for InputSecurityStyleValue
impl<'a> Parse<'a> for InputSecurityStyleValue
Source§impl PartialEq for InputSecurityStyleValue
impl PartialEq for InputSecurityStyleValue
Source§impl PartialOrd for InputSecurityStyleValue
impl PartialOrd for InputSecurityStyleValue
Source§impl<'a> Peek<'a> for InputSecurityStyleValue
impl<'a> Peek<'a> for InputSecurityStyleValue
Source§impl ToCursors for InputSecurityStyleValue
impl ToCursors for InputSecurityStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for InputSecurityStyleValue
impl StructuralPartialEq for InputSecurityStyleValue
Auto Trait Implementations§
impl Freeze for InputSecurityStyleValue
impl RefUnwindSafe for InputSecurityStyleValue
impl Send for InputSecurityStyleValue
impl Sync for InputSecurityStyleValue
impl Unpin for InputSecurityStyleValue
impl UnwindSafe for InputSecurityStyleValue
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