Returns true if the attestation mode supports composability (OS image + runtime loadable application)
(&self)
| 207 | |
| 208 | /// Returns true if the attestation mode supports composability (OS image + runtime loadable application) |
| 209 | pub fn is_composable(&self) -> bool { |
| 210 | match self { |
| 211 | Self::DstackTdx => true, |
| 212 | Self::DstackGcpTdx => true, |
| 213 | Self::DstackNitroEnclave => false, |
| 214 | } |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | /// The content type of a quote. A CVM should only generate quotes for these types. |
no outgoing calls
no test coverage detected