pub struct TextEditOptions {
pub multiline: bool,
pub password: bool,
}Expand description
Options for text-edit widgets.
Fields§
§multiline: boolWhether the edit is multiline.
password: boolWhether the edit masks its contents.
Trait Implementations§
Source§impl Clone for TextEditOptions
impl Clone for TextEditOptions
Source§fn clone(&self) -> TextEditOptions
fn clone(&self) -> TextEditOptions
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 TextEditOptions
impl Debug for TextEditOptions
Source§impl Default for TextEditOptions
impl Default for TextEditOptions
Source§fn default() -> TextEditOptions
fn default() -> TextEditOptions
Returns the “default value” for a type. Read more
impl Copy for TextEditOptions
Auto Trait Implementations§
impl Freeze for TextEditOptions
impl RefUnwindSafe for TextEditOptions
impl Send for TextEditOptions
impl Sync for TextEditOptions
impl Unpin for TextEditOptions
impl UnsafeUnpin for TextEditOptions
impl UnwindSafe for TextEditOptions
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