#[repr(C)]pub struct SignatureFieldDef {
pub name: String,
pub page: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
}Expand description
Signature field definition
Fields§
§name: StringField name
page: u32Page number (1-based)
x: f64X coordinate in points
y: f64Y coordinate in points
width: f64Width in points
height: f64Height in points
Trait Implementations§
Source§impl Clone for SignatureFieldDef
impl Clone for SignatureFieldDef
Source§impl Debug for SignatureFieldDef
impl Debug for SignatureFieldDef
Source§impl Default for SignatureFieldDef
impl Default for SignatureFieldDef
Source§impl ExternType for SignatureFieldDef
impl ExternType for SignatureFieldDef
Auto Trait Implementations§
impl Freeze for SignatureFieldDef
impl RefUnwindSafe for SignatureFieldDef
impl Send for SignatureFieldDef
impl Sync for SignatureFieldDef
impl Unpin for SignatureFieldDef
impl UnwindSafe for SignatureFieldDef
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