pub struct TextInputBuilder { /* private fields */ }
Expand description
Builder for TextInput
.
Implementations§
Source§impl TextInputBuilder
impl TextInputBuilder
Sourcepub fn title<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn title<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The label of the Submit button for the text input.
Sourcepub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn description<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
A description of the text input.
Trait Implementations§
Source§impl Clone for TextInputBuilder
impl Clone for TextInputBuilder
Source§fn clone(&self) -> TextInputBuilder
fn clone(&self) -> TextInputBuilder
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for TextInputBuilder
impl RefUnwindSafe for TextInputBuilder
impl Send for TextInputBuilder
impl Sync for TextInputBuilder
impl Unpin for TextInputBuilder
impl UnwindSafe for TextInputBuilder
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