pub trait ObsContextReplayExt {
// Required method
fn replay_buffer_builder<T: Into<ObsString>, K: Into<ObsPath>>(
&self,
name: T,
directory_path: K,
) -> ReplayBufferBuilder;
}Expand description
Extension trait for ObsContext to create replay buffer builders
Required Methods§
fn replay_buffer_builder<T: Into<ObsString>, K: Into<ObsPath>>( &self, name: T, directory_path: K, ) -> ReplayBufferBuilder
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.