Struct gtk::builders::TextBufferBuilder
source · [−]pub struct TextBufferBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct TextBuffer
objects.
Implementations
sourceimpl TextBufferBuilder
impl TextBufferBuilder
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new TextBufferBuilder
.
sourcepub fn build(self) -> TextBuffer
pub fn build(self) -> TextBuffer
Build the TextBuffer
.
pub fn tag_table(self, tag_table: &impl IsA<TextTagTable>) -> Self
sourcepub fn text(self, text: &str) -> Self
pub fn text(self, text: &str) -> Self
The text content of the buffer. Without child widgets and images,
see TextBufferExt::text()
for more information.
Trait Implementations
sourceimpl Clone for TextBufferBuilder
impl Clone for TextBufferBuilder
sourcefn clone(&self) -> TextBufferBuilder
fn clone(&self) -> TextBufferBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for TextBufferBuilder
impl Default for TextBufferBuilder
sourcefn default() -> TextBufferBuilder
fn default() -> TextBufferBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for TextBufferBuilder
impl !Send for TextBufferBuilder
impl !Sync for TextBufferBuilder
impl Unpin for TextBufferBuilder
impl UnwindSafe for TextBufferBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more