pub trait TakeX {
// Required methods
fn take_x<T>(&mut self, k: &str) -> RustiumResult<Option<T>>
where Self: TakeXImpl<T>;
fn take_x_val<T>(&mut self, k: &str) -> RustiumResult<T>
where Self: TakeXImpl<T>;
}Required Methods§
fn take_x<T>(&mut self, k: &str) -> RustiumResult<Option<T>>where
Self: TakeXImpl<T>,
fn take_x_val<T>(&mut self, k: &str) -> RustiumResult<T>where
Self: TakeXImpl<T>,
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.