pub struct GpuTestConfiguration {
pub(crate) name: String,
pub(crate) location: &'static Location<'static>,
pub(crate) params: TestParameters,
pub(crate) test: Option<Arc<dyn Fn(TestingContext) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>>,
}
Expand description
Configuration for a GPU test.
Fields§
§name: String
§location: &'static Location<'static>
§params: TestParameters
§test: Option<Arc<dyn Fn(TestingContext) -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>>
Implementations§
Source§impl GpuTestConfiguration
impl GpuTestConfiguration
pub fn new() -> Self
Sourcepub fn name(self, name: &str) -> Self
pub fn name(self, name: &str) -> Self
Set the name of the test. Must be unique across all tests in the binary.
Sourcepub fn parameters(self, parameters: TestParameters) -> Self
pub fn parameters(self, parameters: TestParameters) -> Self
Set the parameters that the test needs to succeed.
Sourcepub fn run_sync(
self,
test: impl Fn(TestingContext) + Copy + RunTestSendSync + 'static,
) -> Self
pub fn run_sync( self, test: impl Fn(TestingContext) + Copy + RunTestSendSync + 'static, ) -> Self
Make the test function an synchronous function.
Sourcepub fn run_async<F, R>(self, test: F) -> Selfwhere
F: Fn(TestingContext) -> R + RunTestSendSync + 'static,
R: Future<Output = ()> + RunTestSend + 'static,
pub fn run_async<F, R>(self, test: F) -> Selfwhere
F: Fn(TestingContext) -> R + RunTestSendSync + 'static,
R: Future<Output = ()> + RunTestSend + 'static,
Make the test function an asynchronous function/future.
Trait Implementations§
Source§impl Clone for GpuTestConfiguration
impl Clone for GpuTestConfiguration
Source§fn clone(&self) -> GpuTestConfiguration
fn clone(&self) -> GpuTestConfiguration
Returns a copy 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 GpuTestConfiguration
impl !RefUnwindSafe for GpuTestConfiguration
impl Send for GpuTestConfiguration
impl Sync for GpuTestConfiguration
impl Unpin for GpuTestConfiguration
impl !UnwindSafe for GpuTestConfiguration
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