pub struct Password(pub String);
Expand description
A minimal string wrapper that creates a password form input.
Tuple Fields§
§0: String
Trait Implementations§
Source§impl<C> FormWith<C> for Password
impl<C> FormWith<C> for Password
fn new_form_with_( _context: &C, field: &str, from: Option<&Self>, _depth: usize, ) -> (FormElements, Box<dyn FormState<Self>>)
Source§fn new_form_with(
context: &C,
field: &str,
from: Option<&Self>,
) -> (FormElements, Box<dyn FormState<Self>>)
fn new_form_with( context: &C, field: &str, from: Option<&Self>, ) -> (FormElements, Box<dyn FormState<Self>>)
Generates a form state manager to produce form elements and parse the entered
values. Read more
Auto Trait Implementations§
impl Freeze for Password
impl RefUnwindSafe for Password
impl Send for Password
impl Sync for Password
impl Unpin for Password
impl UnwindSafe for Password
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