pub trait InspectType:
Send
+ Sync
+ Debug {
// Required method
fn into_recorded(self) -> RecordedInspectType
where Self: Sized + 'static;
}Expand description
Trait implemented by all inspect types.
Required Methods§
fn into_recorded(self) -> RecordedInspectTypewhere
Self: Sized + 'static,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".