Trait FromWithContext

Source
pub trait FromWithContext<U, C> {
    // Required method
    fn from_with(value: U, context: &C) -> Self;
}

Required Methods§

Source

fn from_with(value: U, context: &C) -> Self

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<T, C> FromWithContext<T, C> for T