pub struct ScenarioReport {
pub name: &'static str,
pub provider: &'static str,
pub observations: Vec<String>,
}Available on crate feature
test-utils and not (target_os=unknown and WebAssembly) only.Expand description
Outcome of a passing wire-conformance scenario.
Fields§
§name: &'static strStable scenario name.
provider: &'static strProvider driver the scenario ran against.
observations: Vec<String>Human-readable observations, one per verified sub-case.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScenarioReport
impl RefUnwindSafe for ScenarioReport
impl Send for ScenarioReport
impl Sync for ScenarioReport
impl Unpin for ScenarioReport
impl UnsafeUnpin for ScenarioReport
impl UnwindSafe for ScenarioReport
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