pub struct TextInputRenderProps<'a> {
pub value: &'a str,
pub placeholder: &'a str,
pub is_focused: bool,
pub style: TextInputStyle,
}Expand description
Render-only props for TextInput
Fields§
§value: &'a strCurrent input value
placeholder: &'a strPlaceholder text when empty
is_focused: boolWhether this component has focus
style: TextInputStyleUnified styling
Auto Trait Implementations§
impl<'a> Freeze for TextInputRenderProps<'a>
impl<'a> RefUnwindSafe for TextInputRenderProps<'a>
impl<'a> Send for TextInputRenderProps<'a>
impl<'a> Sync for TextInputRenderProps<'a>
impl<'a> Unpin for TextInputRenderProps<'a>
impl<'a> UnsafeUnpin for TextInputRenderProps<'a>
impl<'a> UnwindSafe for TextInputRenderProps<'a>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more