pub struct NoopTextSystem;Implementations§
Source§impl NoopTextSystem
impl NoopTextSystem
pub fn new() -> NoopTextSystem
Trait Implementations§
Source§impl PlatformTextSystem for NoopTextSystem
impl PlatformTextSystem for NoopTextSystem
fn add_fonts(&self, _fonts: Vec<Cow<'static, [u8]>>) -> Result<(), Error>
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, Error>
fn font_id(&self, _descriptor: &Font) -> Result<FontId, Error>
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>, Error>
fn typographic_bounds( &self, _font_id: FontId, _glyph_id: GlyphId, ) -> Result<Bounds<f32>, Error>
Get typographic bounds for a glyph.
Source§fn advance(
&self,
_font_id: FontId,
glyph_id: GlyphId,
) -> Result<Size<f32>, Error>
fn advance( &self, _font_id: FontId, glyph_id: GlyphId, ) -> Result<Size<f32>, Error>
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>, Error>
fn glyph_raster_bounds( &self, _params: &RenderGlyphParams, ) -> Result<Bounds<DevicePixels>, Error>
Get raster bounds for a glyph.
Source§fn rasterize_glyph(
&self,
_params: &RenderGlyphParams,
raster_bounds: Bounds<DevicePixels>,
) -> Result<(Size<DevicePixels>, Vec<u8>), Error>
fn rasterize_glyph( &self, _params: &RenderGlyphParams, raster_bounds: Bounds<DevicePixels>, ) -> Result<(Size<DevicePixels>, Vec<u8>), Error>
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 prewarm_fonts(&self, _font_ids: &[FontId])
fn prewarm_fonts(&self, _font_ids: &[FontId])
Prewarm any system font caches needed to shape text.
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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
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