Struct write_fonts::tables::cmap::ConstantMapGroup
source · pub struct ConstantMapGroup {
pub start_char_code: u32,
pub end_char_code: u32,
pub glyph_id: u32,
}Expand description
Part of Cmap13
Fields§
§start_char_code: u32First character code in this group
end_char_code: u32Last character code in this group
glyph_id: u32Glyph index to be used for all the characters in the group’s range.
Implementations§
Trait Implementations§
source§impl Clone for ConstantMapGroup
impl Clone for ConstantMapGroup
source§fn clone(&self) -> ConstantMapGroup
fn clone(&self) -> ConstantMapGroup
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ConstantMapGroup
impl Debug for ConstantMapGroup
source§impl Default for ConstantMapGroup
impl Default for ConstantMapGroup
source§fn default() -> ConstantMapGroup
fn default() -> ConstantMapGroup
Returns the “default value” for a type. Read more
source§impl FontWrite for ConstantMapGroup
impl FontWrite for ConstantMapGroup
source§fn write_into(&self, writer: &mut TableWriter)
fn write_into(&self, writer: &mut TableWriter)
Write our data and information about offsets into this TableWriter.
fn name(&self) -> &'static str
source§impl FromObjRef<ConstantMapGroup> for ConstantMapGroup
impl FromObjRef<ConstantMapGroup> for ConstantMapGroup
source§fn from_obj_ref(obj: &ConstantMapGroup, _: FontData<'_>) -> Self
fn from_obj_ref(obj: &ConstantMapGroup, _: FontData<'_>) -> Self
Convert
from to an instance of Self, using the provided data to resolve offsets.source§impl Validate for ConstantMapGroup
impl Validate for ConstantMapGroup
source§fn validate_impl(&self, _ctx: &mut ValidationCtx)
fn validate_impl(&self, _ctx: &mut ValidationCtx)
Validate this table. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ConstantMapGroup
impl Send for ConstantMapGroup
impl Sync for ConstantMapGroup
impl Unpin for ConstantMapGroup
impl UnwindSafe for ConstantMapGroup
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<U, T> ToOwnedObj<U> for Twhere
U: FromObjRef<T>,
impl<U, T> ToOwnedObj<U> for Twhere U: FromObjRef<T>,
source§fn to_owned_obj(&self, data: FontData<'_>) -> U
fn to_owned_obj(&self, data: FontData<'_>) -> U
Convert this type into
T, using the provided data to resolve any offsets.