Struct owned_ttf_parser::gpos::Anchor [−][src]
pub struct Anchor<'a> {
pub x: i16,
pub y: i16,
pub x_device: Option<Device<'a>>,
pub y_device: Option<Device<'a>>,
}
Expand description
An Anchor Table.
The Anchor Table Format 2: Design Units Plus Contour Point is not supported.
Fields
x: i16
Horizontal value, in design units.
y: i16
Vertical value, in design units.
x_device: Option<Device<'a>>
A Device
table with horizontal value.
y_device: Option<Device<'a>>
A Device
table with vertical value.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Anchor<'a>
impl<'a> UnwindSafe for Anchor<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more