pub struct PasswordEntryBufferBuilder { /* private fields */ }Available on crate feature
v4_4 only.Expand description
A builder-pattern type to construct PasswordEntryBuffer objects.
Implementations§
Source§impl PasswordEntryBufferBuilder
impl PasswordEntryBufferBuilder
Sourcepub fn max_length(self, max_length: i32) -> Self
pub fn max_length(self, max_length: i32) -> Self
The maximum length (in characters) of the text in the buffer.
Sourcepub fn build(self) -> PasswordEntryBuffer
pub fn build(self) -> PasswordEntryBuffer
Build the PasswordEntryBuffer.
Auto Trait Implementations§
impl Freeze for PasswordEntryBufferBuilder
impl RefUnwindSafe for PasswordEntryBufferBuilder
impl !Send for PasswordEntryBufferBuilder
impl !Sync for PasswordEntryBufferBuilder
impl Unpin for PasswordEntryBufferBuilder
impl UnwindSafe for PasswordEntryBufferBuilder
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