#[repr(C)]pub struct PreparedSignature {
pub pdf_data: Vec<u8>,
pub byte_range: Vec<i64>,
pub contents_offset: u64,
pub contents_length: u64,
}Expand description
Prepared PDF signature (result of preparing PDF for signing)
Fields§
§pdf_data: Vec<u8>PDF data with signature placeholder
byte_range: Vec<i64>Byte range array [offset1, len1, offset2, len2]
contents_offset: u64Offset where signature contents should be written
contents_length: u64Maximum length of signature contents (hex-encoded)
Trait Implementations§
Source§impl Clone for PreparedSignature
impl Clone for PreparedSignature
Source§impl Debug for PreparedSignature
impl Debug for PreparedSignature
Source§impl Default for PreparedSignature
impl Default for PreparedSignature
Source§impl ExternType for PreparedSignature
impl ExternType for PreparedSignature
Auto Trait Implementations§
impl Freeze for PreparedSignature
impl RefUnwindSafe for PreparedSignature
impl Send for PreparedSignature
impl Sync for PreparedSignature
impl Unpin for PreparedSignature
impl UnwindSafe for PreparedSignature
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