#[repr(C)]pub struct SignatureFieldInfo {
pub name: String,
pub page: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
pub is_signed: bool,
}Expand description
Signature field information (for listing existing fields)
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
is_signed: boolWhether the field is already signed
Trait Implementations§
Source§impl Clone for SignatureFieldInfo
impl Clone for SignatureFieldInfo
Source§impl Debug for SignatureFieldInfo
impl Debug for SignatureFieldInfo
Source§impl Default for SignatureFieldInfo
impl Default for SignatureFieldInfo
Source§impl ExternType for SignatureFieldInfo
impl ExternType for SignatureFieldInfo
Auto Trait Implementations§
impl Freeze for SignatureFieldInfo
impl RefUnwindSafe for SignatureFieldInfo
impl Send for SignatureFieldInfo
impl Sync for SignatureFieldInfo
impl Unpin for SignatureFieldInfo
impl UnwindSafe for SignatureFieldInfo
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