pub trait ModeConformanceProvider: Send + Sync {
// Required methods
fn fixture_set_name(&self) -> &'static str;
fn golden_transcript_paths(&self) -> Vec<&'static str>;
fn conformance_fixture_paths(&self) -> Vec<&'static str>;
}Required Methods§
fn fixture_set_name(&self) -> &'static str
fn golden_transcript_paths(&self) -> Vec<&'static str>
fn conformance_fixture_paths(&self) -> Vec<&'static str>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".