pub enum XmlDSigError {
XmlParse(String),
Canonicalize(String),
VerifyFailed,
UnsupportedAlgorithm(String),
}Expand description
Errors during XMLDSig operations.
Variants§
XmlParse(String)
XML parse error.
Canonicalize(String)
Canonicalization error.
VerifyFailed
Signature verification failed.
UnsupportedAlgorithm(String)
Unsupported algorithm.
Trait Implementations§
Source§impl Debug for XmlDSigError
impl Debug for XmlDSigError
Source§impl Display for XmlDSigError
impl Display for XmlDSigError
Source§impl Error for XmlDSigError
impl Error for XmlDSigError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for XmlDSigError
impl RefUnwindSafe for XmlDSigError
impl Send for XmlDSigError
impl Sync for XmlDSigError
impl Unpin for XmlDSigError
impl UnsafeUnpin for XmlDSigError
impl UnwindSafe for XmlDSigError
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