pub enum SignatureValidationLevel {
XmlDsig,
XadesBes,
XadesEpes(SignaturePolicy),
XadesBaselineB {
policy: Option<SignaturePolicy>,
},
XadesT,
XadesLt,
XadesLta,
}Expand description
Generic strictness level expected by a validation profile.
Variants§
XmlDsig
XadesBes
XadesEpes(SignaturePolicy)
XadesBaselineB
Fields
§
policy: Option<SignaturePolicy>XadesT
XadesLt
XadesLta
Trait Implementations§
Source§impl Clone for SignatureValidationLevel
impl Clone for SignatureValidationLevel
Source§fn clone(&self) -> SignatureValidationLevel
fn clone(&self) -> SignatureValidationLevel
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 SignatureValidationLevel
impl Debug for SignatureValidationLevel
impl Eq for SignatureValidationLevel
Source§impl PartialEq for SignatureValidationLevel
impl PartialEq for SignatureValidationLevel
Source§fn eq(&self, other: &SignatureValidationLevel) -> bool
fn eq(&self, other: &SignatureValidationLevel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SignatureValidationLevel
Auto Trait Implementations§
impl Freeze for SignatureValidationLevel
impl RefUnwindSafe for SignatureValidationLevel
impl Send for SignatureValidationLevel
impl Sync for SignatureValidationLevel
impl Unpin for SignatureValidationLevel
impl UnsafeUnpin for SignatureValidationLevel
impl UnwindSafe for SignatureValidationLevel
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