Struct glyph_brush_layout::SectionText
source · pub struct SectionText<'a> {
pub text: &'a str,
pub scale: PxScale,
pub font_id: FontId,
}
Expand description
Text to layout together using a font & scale.
Fields§
§text: &'a str
Text to render
scale: PxScale
Position on screen to render text, in pixels from top-left. Defaults to (0, 0).
font_id: FontId
Font id to use for this section.
It must be a valid id in the FontMap
used for layout calls.
The default FontId(0)
should always be valid.
Trait Implementations§
source§impl<'a> Clone for SectionText<'a>
impl<'a> Clone for SectionText<'a>
source§fn clone(&self) -> SectionText<'a>
fn clone(&self) -> SectionText<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'a> Debug for SectionText<'a>
impl<'a> Debug for SectionText<'a>
source§impl Default for SectionText<'static>
impl Default for SectionText<'static>
source§impl<'a> PartialEq for SectionText<'a>
impl<'a> PartialEq for SectionText<'a>
source§fn eq(&self, other: &SectionText<'a>) -> bool
fn eq(&self, other: &SectionText<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ToSectionText for &SectionText<'_>
impl ToSectionText for &SectionText<'_>
fn to_section_text(&self) -> SectionText<'_>
source§impl ToSectionText for SectionText<'_>
impl ToSectionText for SectionText<'_>
fn to_section_text(&self) -> SectionText<'_>
impl<'a> Copy for SectionText<'a>
impl<'a> StructuralPartialEq for SectionText<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for SectionText<'a>
impl<'a> Send for SectionText<'a>
impl<'a> Sync for SectionText<'a>
impl<'a> Unpin for SectionText<'a>
impl<'a> UnwindSafe for SectionText<'a>
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