pub enum XIDVerifySignature {
None,
Inception,
}Expand description
Options for verifying the signature on an envelope when loading an XIDDocument.
Variants§
None
Do not verify the signature (default).
Inception
Verify that the envelope is signed with the inception key.
Trait Implementations§
Source§impl Clone for XIDVerifySignature
impl Clone for XIDVerifySignature
Source§fn clone(&self) -> XIDVerifySignature
fn clone(&self) -> XIDVerifySignature
Returns a duplicate of the value. Read more
1.0.0 · 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 XIDVerifySignature
impl Debug for XIDVerifySignature
Source§impl Default for XIDVerifySignature
impl Default for XIDVerifySignature
Source§fn default() -> XIDVerifySignature
fn default() -> XIDVerifySignature
Returns the “default value” for a type. Read more
Source§impl PartialEq for XIDVerifySignature
impl PartialEq for XIDVerifySignature
impl Eq for XIDVerifySignature
impl StructuralPartialEq for XIDVerifySignature
Auto Trait Implementations§
impl Freeze for XIDVerifySignature
impl RefUnwindSafe for XIDVerifySignature
impl Send for XIDVerifySignature
impl Sync for XIDVerifySignature
impl Unpin for XIDVerifySignature
impl UnwindSafe for XIDVerifySignature
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more