We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b05a5 commit be14542Copy full SHA for be14542
1 file changed
dstack-attest/src/attestation.rs
@@ -173,6 +173,7 @@ impl QuoteContentType<'_> {
173
}
174
175
176
+#[allow(clippy::large_enum_variant)]
177
/// Represents a verified attestation
178
#[derive(Clone)]
179
pub enum DstackVerifiedReport {
@@ -264,8 +265,8 @@ impl AttestationQuote {
264
265
pub fn mode(&self) -> AttestationMode {
266
match self {
267
AttestationQuote::DstackTdx { .. } => AttestationMode::DstackTdx,
- AttestationQuote::DstackGcpTdx { .. } => AttestationMode::DstackGcpTdx,
268
- AttestationQuote::DstackNitroEnclave { .. } => AttestationMode::DstackNitroEnclave,
+ AttestationQuote::DstackGcpTdx => AttestationMode::DstackGcpTdx,
269
+ AttestationQuote::DstackNitroEnclave => AttestationMode::DstackNitroEnclave,
270
271
272
0 commit comments