#[repr(C)]pub struct SigningFieldDef {
pub field_name: String,
pub reason: String,
pub location: String,
pub contact_info: String,
pub page: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
}Expand description
Signing field definition for preparing signature
Fields§
§field_name: StringField name
reason: StringReason for signing
location: StringLocation of signing
contact_info: StringContact info
page: u32Page number (1-based, 0 = last page)
x: f64X coordinate in points (for visible signature)
y: f64Y coordinate in points
width: f64Width in points (0 = invisible)
height: f64Height in points
Trait Implementations§
Source§impl Clone for SigningFieldDef
impl Clone for SigningFieldDef
Source§impl Debug for SigningFieldDef
impl Debug for SigningFieldDef
Source§impl Default for SigningFieldDef
impl Default for SigningFieldDef
Source§impl ExternType for SigningFieldDef
impl ExternType for SigningFieldDef
Auto Trait Implementations§
impl Freeze for SigningFieldDef
impl RefUnwindSafe for SigningFieldDef
impl Send for SigningFieldDef
impl Sync for SigningFieldDef
impl Unpin for SigningFieldDef
impl UnwindSafe for SigningFieldDef
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