pub struct EntryBufferBuilder { /* private fields */ }Expand description
A builder-pattern type to construct EntryBuffer objects.
Implementations§
Source§impl EntryBufferBuilder
impl EntryBufferBuilder
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) -> EntryBuffer
pub fn build(self) -> EntryBuffer
Build the EntryBuffer.
Auto Trait Implementations§
impl Freeze for EntryBufferBuilder
impl RefUnwindSafe for EntryBufferBuilder
impl !Send for EntryBufferBuilder
impl !Sync for EntryBufferBuilder
impl Unpin for EntryBufferBuilder
impl UnwindSafe for EntryBufferBuilder
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