#[repr(C)]pub struct VisibleSignature {
pub field_name: String,
pub page: u32,
pub x: f64,
pub y: f64,
pub width: f64,
pub height: f64,
pub show_name: bool,
pub show_date: bool,
pub show_reason: bool,
pub background_image: Vec<u8>,
}Expand description
Visible signature appearance
Fields§
§field_name: StringSignature field name
page: u32Page number (1-based)
x: f64X coordinate in points
y: f64Y coordinate in points
width: f64Width in points
height: f64Height in points
show_name: boolShow signer name
show_date: boolShow signing date
show_reason: boolShow reason
background_image: Vec<u8>Background image data (PNG/JPEG)
Trait Implementations§
Source§impl Clone for VisibleSignature
impl Clone for VisibleSignature
Source§impl Debug for VisibleSignature
impl Debug for VisibleSignature
Source§impl Default for VisibleSignature
impl Default for VisibleSignature
Source§impl ExternType for VisibleSignature
impl ExternType for VisibleSignature
Auto Trait Implementations§
impl Freeze for VisibleSignature
impl RefUnwindSafe for VisibleSignature
impl Send for VisibleSignature
impl Sync for VisibleSignature
impl Unpin for VisibleSignature
impl UnwindSafe for VisibleSignature
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