// THIS FILE IS AUTOGENERATED. // Any changes to this file will be overwritten. // For more information about how codegen works, see font-codegen/README.md #[allow(unused_imports)] use crate::codegen_prelude::*; impl<'a> MinByteRange<'a> for Ebdt<'a> { fn min_byte_range(&self) -> Range { 0..self.minor_version_byte_range().end } fn min_table_bytes(&self) -> &'a [u8] { let range = self.min_byte_range(); self.data.as_bytes().get(range).unwrap_or_default() } } impl TopLevelTable for Ebdt<'_> { /// `EBDT` const TAG: Tag = Tag::new(b"EBDT"); } impl<'a> FontRead<'a> for Ebdt<'a> { fn read(data: FontData<'a>) -> Result { #[allow(clippy::absurd_extreme_comparisons)] if data.len() < Self::MIN_SIZE { return Err(ReadError::OutOfBounds); } Ok(Self { data }) } } /// The [Embedded Bitmap Data](https://learn.microsoft.com/en-us/typography/opentype/spec/ebdt) table #[derive(Clone)] pub struct Ebdt<'a> { data: FontData<'a>, } #[allow(clippy::needless_lifetimes)] impl<'a> Ebdt<'a> { pub const MIN_SIZE: usize = (u16::RAW_BYTE_LEN + u16::RAW_BYTE_LEN); basic_table_impls!(impl_the_methods); /// Major version of the EBDT table, = 2. pub fn major_version(&self) -> u16 { let range = self.major_version_byte_range(); self.data.read_at(range.start).ok().unwrap() } /// Minor version of EBDT table, = 0. pub fn minor_version(&self) -> u16 { let range = self.minor_version_byte_range(); self.data.read_at(range.start).ok().unwrap() } pub fn major_version_byte_range(&self) -> Range { let start = 0; let end = start + u16::RAW_BYTE_LEN; start..end } pub fn minor_version_byte_range(&self) -> Range { let start = self.major_version_byte_range().end; let end = start + u16::RAW_BYTE_LEN; start..end } } const _: () = assert!(FontData::default_data_long_enough(Ebdt::MIN_SIZE)); impl Default for Ebdt<'_> { fn default() -> Self { Self { data: FontData::default_table_data(), } } } #[cfg(feature = "experimental_traverse")] impl<'a> SomeTable<'a> for Ebdt<'a> { fn type_name(&self) -> &str { "Ebdt" } fn get_field(&self, idx: usize) -> Option> { match idx { 0usize => Some(Field::new("major_version", self.major_version())), 1usize => Some(Field::new("minor_version", self.minor_version())), _ => None, } } } #[cfg(feature = "experimental_traverse")] #[allow(clippy::needless_lifetimes)] impl<'a> std::fmt::Debug for Ebdt<'a> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { (self as &dyn SomeTable<'a>).fmt(f) } }