pub struct Paragraph {
pub line_height: f32,
pub align: TextAlign,
pub wrap: TextWrap,
/* private fields */
}
Expand description
A paragraph of rich text, that can contain multiple segments with different FontAttributes
.
Fields§
§line_height: f32
The line height of the text.
align: TextAlign
The alignment of the text.
wrap: TextWrap
The text wrapping mode.
Implementations§
Source§impl Paragraph
impl Paragraph
Sourcepub fn new(line_height: f32, align: TextAlign, wrap: TextWrap) -> Paragraph
pub fn new(line_height: f32, align: TextAlign, wrap: TextWrap) -> Paragraph
Create a new empty paragraph.
Sourcepub fn set_text(&mut self, text: impl Display, attrs: FontAttributes)
pub fn set_text(&mut self, text: impl Display, attrs: FontAttributes)
Set the text of the paragraph with the given FontAttributes
.
Sourcepub fn push_text(&mut self, text: impl Display, attrs: FontAttributes)
pub fn push_text(&mut self, text: impl Display, attrs: FontAttributes)
Push a new segment of text with the given FontAttributes
to the paragraph.
Sourcepub fn with_text(self, text: impl Display, attrs: FontAttributes) -> Paragraph
pub fn with_text(self, text: impl Display, attrs: FontAttributes) -> Paragraph
Push a new segment of text with the given FontAttributes
to the paragraph.
Sourcepub fn iter(&self) -> impl DoubleEndedIterator
pub fn iter(&self) -> impl DoubleEndedIterator
Get an iterator over the segments of the paragraph.
Sourcepub fn iter_mut(&mut self) -> impl DoubleEndedIterator
pub fn iter_mut(&mut self) -> impl DoubleEndedIterator
Get an iterator over the segments of the paragraph mutably.
Trait Implementations§
impl Eq for Paragraph
impl StructuralPartialEq for Paragraph
Auto Trait Implementations§
impl Freeze for Paragraph
impl RefUnwindSafe for Paragraph
impl Send for Paragraph
impl Sync for Paragraph
impl Unpin for Paragraph
impl UnwindSafe for Paragraph
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