pub struct SignatureSettings {
pub incremental_save: bool,
pub require_all_signatures: bool,
pub lock_all_after_first_signature: bool,
pub default_algorithm: SignatureAlgorithm,
pub enable_timestamps: bool,
}Expand description
Settings for signature handling
Fields§
§incremental_save: boolAllow incremental saves for signatures
require_all_signatures: boolRequire all signature fields to be signed
lock_all_after_first_signature: boolLock all fields after any signature
default_algorithm: SignatureAlgorithmDefault signature algorithm
enable_timestamps: boolEnable signature timestamps
Trait Implementations§
Source§impl Clone for SignatureSettings
impl Clone for SignatureSettings
Source§fn clone(&self) -> SignatureSettings
fn clone(&self) -> SignatureSettings
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 moreSource§impl Debug for SignatureSettings
impl Debug for SignatureSettings
Auto Trait Implementations§
impl Freeze for SignatureSettings
impl RefUnwindSafe for SignatureSettings
impl Send for SignatureSettings
impl Sync for SignatureSettings
impl Unpin for SignatureSettings
impl UnsafeUnpin for SignatureSettings
impl UnwindSafe for SignatureSettings
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