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: i16Horizontal value, in design units.
y: i16Vertical 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§
impl<'a> Copy for Anchor<'a>
Auto Trait Implementations§
impl<'a> Freeze for Anchor<'a>
impl<'a> RefUnwindSafe for Anchor<'a>
impl<'a> Send for Anchor<'a>
impl<'a> Sync for Anchor<'a>
impl<'a> Unpin for Anchor<'a>
impl<'a> UnwindSafe for Anchor<'a>
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