Write documentation for iced_core
This commit is contained in:
parent
63dbf078fe
commit
d3553adf27
16 changed files with 216 additions and 44 deletions
|
|
@ -1,8 +1,18 @@
|
|||
/// A font.
|
||||
#[derive(Debug, Clone, Copy)]
|
||||
pub enum Font {
|
||||
/// The default font.
|
||||
///
|
||||
/// This is normally a font configured in a renderer or loaded from the
|
||||
/// system.
|
||||
Default,
|
||||
|
||||
/// An external font.
|
||||
External {
|
||||
/// The name of the external font
|
||||
name: &'static str,
|
||||
|
||||
/// The bytes of the external font
|
||||
bytes: &'static [u8],
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue