| 1 | // font-kit/src/file_type.rs |
| 2 | // |
| 3 | // Copyright © 2018 The Pathfinder Project Developers. |
| 4 | // |
| 5 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | // option. This file may not be copied, modified, or distributed |
| 9 | // except according to those terms. |
| 10 | |
| 11 | //! The type of a font file: either a single font or a TrueType/OpenType collection. |
| 12 | |
| 13 | /// The type of a font file: either a single font or a TrueType/OpenType collection. |
| 14 | #[derive (Clone, Copy, Debug, PartialEq)] |
| 15 | pub enum FileType { |
| 16 | /// The font file represents a single font (`.ttf`, `.otf`, `.woff`, etc.) |
| 17 | Single, |
| 18 | /// The font file represents a collection of fonts (`.ttc`, `.otc`, etc.) |
| 19 | Collection(u32), |
| 20 | } |
| 21 | |