blob: dbe818306ea70ab4348f835445cafe440eb6a69a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
/// The settings of a [`Renderer`].
///
/// [`Renderer`]: struct.Renderer.html
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct Settings {
/// The bytes of the font that will be used by default.
///
/// If `None` is provided, a default system font will be chosen.
pub default_font: Option<&'static [u8]>,
}
|