pub enum InputFormatter {
DigitsOnly,
AsciiOnly,
Lowercase,
Uppercase,
TrimWhitespace,
SingleLine,
}Expand description
Structured formatter primitives applied to inserted text.
Variants§
Trait Implementations§
Source§impl Clone for InputFormatter
impl Clone for InputFormatter
Source§fn clone(&self) -> InputFormatter
fn clone(&self) -> InputFormatter
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 moreSource§impl Debug for InputFormatter
impl Debug for InputFormatter
Source§impl<'de> Deserialize<'de> for InputFormatter
impl<'de> Deserialize<'de> for InputFormatter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for InputFormatter
impl Hash for InputFormatter
Source§impl PartialEq for InputFormatter
impl PartialEq for InputFormatter
Source§fn eq(&self, other: &InputFormatter) -> bool
fn eq(&self, other: &InputFormatter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for InputFormatter
impl Serialize for InputFormatter
impl Eq for InputFormatter
impl StructuralPartialEq for InputFormatter
Auto Trait Implementations§
impl Freeze for InputFormatter
impl RefUnwindSafe for InputFormatter
impl Send for InputFormatter
impl Sync for InputFormatter
impl Unpin for InputFormatter
impl UnsafeUnpin for InputFormatter
impl UnwindSafe for InputFormatter
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