Struct write_fonts::tables::gdef::AttachPoint
source · pub struct AttachPoint {
pub point_indices: Vec<u16>,
}Expand description
Part of AttachList
Fields§
§point_indices: Vec<u16>Array of contour point indices -in increasing numerical order
Implementations§
Trait Implementations§
source§impl Clone for AttachPoint
impl Clone for AttachPoint
source§fn clone(&self) -> AttachPoint
fn clone(&self) -> AttachPoint
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 AttachPoint
impl Debug for AttachPoint
source§impl Default for AttachPoint
impl Default for AttachPoint
source§fn default() -> AttachPoint
fn default() -> AttachPoint
Returns the “default value” for a type. Read more
source§impl<'a> FontRead<'a> for AttachPoint
impl<'a> FontRead<'a> for AttachPoint
source§impl FontWrite for AttachPoint
impl FontWrite for AttachPoint
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 Validate for AttachPoint
impl Validate for AttachPoint
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 AttachPoint
impl Send for AttachPoint
impl Sync for AttachPoint
impl Unpin for AttachPoint
impl UnwindSafe for AttachPoint
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.