pub struct NoopTextSystem;Implementations§
Trait Implementations§
Source§impl PlatformTextSystem for NoopTextSystem
impl PlatformTextSystem for NoopTextSystem
fn add_fonts(&self, _fonts: Vec<Cow<'static, [u8]>>) -> Result<()>
Source§fn all_font_names(&self) -> Vec<String>
fn all_font_names(&self) -> Vec<String>
Get all available font names.
Source§fn font_id(&self, _descriptor: &Font) -> Result<FontId>
fn font_id(&self, _descriptor: &Font) -> Result<FontId>
Get the font ID for a font descriptor.
Source§fn font_metrics(&self, _font_id: FontId) -> FontMetrics
fn font_metrics(&self, _font_id: FontId) -> FontMetrics
Get metrics for a font.
Source§fn typographic_bounds(
&self,
_font_id: FontId,
_glyph_id: GlyphId,
) -> Result<Bounds<f32>>
fn typographic_bounds( &self, _font_id: FontId, _glyph_id: GlyphId, ) -> Result<Bounds<f32>>
Get typographic bounds for a glyph.
Source§fn advance(&self, _font_id: FontId, glyph_id: GlyphId) -> Result<Size<f32>>
fn advance(&self, _font_id: FontId, glyph_id: GlyphId) -> Result<Size<f32>>
Get the advance width for a glyph.
Source§fn glyph_for_char(&self, _font_id: FontId, ch: char) -> Option<GlyphId>
fn glyph_for_char(&self, _font_id: FontId, ch: char) -> Option<GlyphId>
Get the glyph ID for a character.
Source§fn glyph_raster_bounds(
&self,
_params: &RenderGlyphParams,
) -> Result<Bounds<DevicePixels>>
fn glyph_raster_bounds( &self, _params: &RenderGlyphParams, ) -> Result<Bounds<DevicePixels>>
Get raster bounds for a glyph.
Source§fn rasterize_glyph(
&self,
_params: &RenderGlyphParams,
raster_bounds: Bounds<DevicePixels>,
) -> Result<(Size<DevicePixels>, Vec<u8>)>
fn rasterize_glyph( &self, _params: &RenderGlyphParams, raster_bounds: Bounds<DevicePixels>, ) -> Result<(Size<DevicePixels>, Vec<u8>)>
Rasterize a glyph.
Source§fn layout_line(
&self,
text: &str,
font_size: Pixels,
_runs: &[FontRun],
) -> LineLayout
fn layout_line( &self, text: &str, font_size: Pixels, _runs: &[FontRun], ) -> LineLayout
Layout a line of text with the given font runs.
Source§fn recommended_rendering_mode(
&self,
_font_id: FontId,
_font_size: Pixels,
) -> TextRenderingMode
fn recommended_rendering_mode( &self, _font_id: FontId, _font_size: Pixels, ) -> TextRenderingMode
Returns the recommended text rendering mode for the given font and size.
Source§fn glyph_dilation_for_color(&self, _color: Hsla) -> u8
fn glyph_dilation_for_color(&self, _color: Hsla) -> u8
Returns the dilation level to use for a glyph painted in the given color.
Auto Trait Implementations§
impl Freeze for NoopTextSystem
impl RefUnwindSafe for NoopTextSystem
impl Send for NoopTextSystem
impl Sync for NoopTextSystem
impl Unpin for NoopTextSystem
impl UnsafeUnpin for NoopTextSystem
impl UnwindSafe for NoopTextSystem
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more