pub enum ComputeEvidenceKind {
Modeled,
HostEmulated,
PhysicalDevice,
}Expand description
Discriminator for compute evidence that might otherwise look physical.
Variants§
Modeled
Deterministic model evidence; never proves a physical device.
HostEmulated
Host-side emulation of a device-shaped provider; never proves physical execution.
PhysicalDevice
Evidence captured from a physical device path.
Implementations§
Trait Implementations§
Source§impl Clone for ComputeEvidenceKind
impl Clone for ComputeEvidenceKind
Source§fn clone(&self) -> ComputeEvidenceKind
fn clone(&self) -> ComputeEvidenceKind
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 moreimpl Copy for ComputeEvidenceKind
Source§impl Debug for ComputeEvidenceKind
impl Debug for ComputeEvidenceKind
impl Eq for ComputeEvidenceKind
Source§impl PartialEq for ComputeEvidenceKind
impl PartialEq for ComputeEvidenceKind
impl StructuralPartialEq for ComputeEvidenceKind
Auto Trait Implementations§
impl Freeze for ComputeEvidenceKind
impl RefUnwindSafe for ComputeEvidenceKind
impl Send for ComputeEvidenceKind
impl Sync for ComputeEvidenceKind
impl Unpin for ComputeEvidenceKind
impl UnsafeUnpin for ComputeEvidenceKind
impl UnwindSafe for ComputeEvidenceKind
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