We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609ad18 commit 4ffaaf5Copy full SHA for 4ffaaf5
src/error.rs
@@ -64,7 +64,9 @@ impl Error {
64
| TooManyManifestStores => Self::Manifest { reason: err_str },
65
ClaimMissing { label } => Self::ManifestNotFound { reason: err_str },
66
AssertionDecoding(_) | ClaimDecoding => Self::Decoding { reason: err_str },
67
- AssertionEncoding(_) | XmlWriteError | ClaimEncoding => Self::Encoding { reason: err_str },
+ AssertionEncoding(_) | XmlWriteError | ClaimEncoding => {
68
+ Self::Encoding { reason: err_str }
69
+ }
70
InvalidCoseSignature { coset_error } => Self::Signature { reason: err_str },
71
CoseSignatureAlgorithmNotSupported
72
| CoseMissingKey
0 commit comments