Trait TakeX

Source
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§

Source

fn take_x<T>(&mut self, k: &str) -> RustiumResult<Option<T>>
where Self: TakeXImpl<T>,

Source

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.

Implementors§

Source§

impl<O> TakeX for O

Blanket Implementation