pub enum VerificationStrategy {
Strict,
Statistical {
sample_rate: f64,
},
Boundary,
Minimal,
}Expand description
Verification strategy for GPU operations
Variants§
Strict
Full verification of all elements (expensive)
Statistical
Statistical sampling verification (balanced)
Boundary
Boundary verification only (fast)
Minimal
Minimal verification (fastest)
Trait Implementations§
Source§impl Clone for VerificationStrategy
impl Clone for VerificationStrategy
Source§fn clone(&self) -> VerificationStrategy
fn clone(&self) -> VerificationStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for VerificationStrategy
impl RefUnwindSafe for VerificationStrategy
impl Send for VerificationStrategy
impl Sync for VerificationStrategy
impl Unpin for VerificationStrategy
impl UnwindSafe for VerificationStrategy
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