Skip to main content

Config

Trait Config 

Source
pub trait Config: 'static {
    type Output: 'static + Send;
    type Parameter: 'static + Send;
    type Value: 'static + Send;
    type Context: 'static + Send + Sync;
}

Required Associated Types§

Source

type Output: 'static + Send

Source

type Parameter: 'static + Send

Source

type Value: 'static + Send

Source

type Context: 'static + Send + Sync

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§