pub struct TrustProfile {
pub tee_vendor: String,
pub attestation_level: String,
pub verified: bool,
}Expand description
TEE trust provenance for a provider or inference session.
Fields§
§tee_vendor: StringTEE vendor identifier (e.g. “intel-tdx”, “amd-sev-snp”, “aws-nitro”).
attestation_level: StringAttestation verification level (e.g. “none”, “simulated”, “hardware”).
verified: boolWhether the attestation has been cryptographically verified.
Trait Implementations§
Source§impl Clone for TrustProfile
impl Clone for TrustProfile
Source§fn clone(&self) -> TrustProfile
fn clone(&self) -> TrustProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrustProfile
impl Debug for TrustProfile
Source§impl Default for TrustProfile
impl Default for TrustProfile
Source§fn default() -> TrustProfile
fn default() -> TrustProfile
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrustProfile
impl<'de> Deserialize<'de> for TrustProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TrustProfile
impl RefUnwindSafe for TrustProfile
impl Send for TrustProfile
impl Sync for TrustProfile
impl Unpin for TrustProfile
impl UnsafeUnpin for TrustProfile
impl UnwindSafe for TrustProfile
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