pub enum TextInputVariant {
Outlined,
Filled,
Underline,
Bare,
}Variants§
Outlined
IntUI default: 1 dp bordered rectangle.
Filled
Filled background, no border (Material-3-ish).
Underline
Just a baseline underline.
Bare
No chrome at all — for embedded fields where the parent surface IS the chrome (search fields, ComboBox text part).
Trait Implementations§
Source§impl Clone for TextInputVariant
impl Clone for TextInputVariant
Source§fn clone(&self) -> TextInputVariant
fn clone(&self) -> TextInputVariant
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 TextInputVariant
Source§impl Debug for TextInputVariant
impl Debug for TextInputVariant
Source§impl Default for TextInputVariant
impl Default for TextInputVariant
Source§fn default() -> TextInputVariant
fn default() -> TextInputVariant
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TextInputVariant
impl<'de> Deserialize<'de> for TextInputVariant
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
impl Eq for TextInputVariant
Source§impl Hash for TextInputVariant
impl Hash for TextInputVariant
Source§impl PartialEq for TextInputVariant
impl PartialEq for TextInputVariant
Source§impl Serialize for TextInputVariant
impl Serialize for TextInputVariant
impl StructuralPartialEq for TextInputVariant
Auto Trait Implementations§
impl Freeze for TextInputVariant
impl RefUnwindSafe for TextInputVariant
impl Send for TextInputVariant
impl Sync for TextInputVariant
impl Unpin for TextInputVariant
impl UnsafeUnpin for TextInputVariant
impl UnwindSafe for TextInputVariant
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