Enum EchoMode
#[repr(i32)]pub enum EchoMode {
Normal = 0,
NoEcho = 1,
Password = 2,
}Expand description
Echo modes that specify how to format the display text in a TextEditBuffer.
Variants§
Normal = 0
The characters are visible.
NoEcho = 1
The characters are not visible.
Password = 2
Kanzi masks each character with the character set using TextEditBuffer::setPasswordMaskingCharacter().
Implementations§
Trait Implementations§
§impl VariantConstraint for EchoMode
impl VariantConstraint for EchoMode
impl Copy for EchoMode
impl Eq for EchoMode
impl PropertyTypeConstraint for EchoMode
impl StructuralPartialEq for EchoMode
Auto Trait Implementations§
impl Freeze for EchoMode
impl RefUnwindSafe for EchoMode
impl Send for EchoMode
impl Sync for EchoMode
impl Unpin for EchoMode
impl UnwindSafe for EchoMode
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