pub struct SignatureSummary {
pub total_fields: usize,
pub signed_fields: usize,
pub unsigned_fields: usize,
pub required_fields: usize,
pub required_signed: usize,
pub required_unsigned: usize,
pub all_required_complete: bool,
pub locked_fields: usize,
}Expand description
Summary of signature status in document
Fields§
§total_fields: usizeTotal number of signature fields
signed_fields: usizeNumber of signed fields
unsigned_fields: usizeNumber of unsigned fields
required_fields: usizeNumber of required fields
required_signed: usizeNumber of required fields that are signed
required_unsigned: usizeNumber of required fields that are unsigned
all_required_complete: boolWhether all required fields are signed
locked_fields: usizeNumber of locked fields
Implementations§
Trait Implementations§
Source§impl Clone for SignatureSummary
impl Clone for SignatureSummary
Source§fn clone(&self) -> SignatureSummary
fn clone(&self) -> SignatureSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SignatureSummary
impl RefUnwindSafe for SignatureSummary
impl Send for SignatureSummary
impl Sync for SignatureSummary
impl Unpin for SignatureSummary
impl UnsafeUnpin for SignatureSummary
impl UnwindSafe for SignatureSummary
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