Skip to main content

SpecConfig

Trait SpecConfig 

Source
pub trait SpecConfig:
    Any
    + Debug
    + Send {
    // Required method
    fn as_any(&self) -> &dyn Any;
}
Expand description

Opaque per-spec configuration owned by a spec implementation.

Required Methods§

Source

fn as_any(&self) -> &dyn Any

Implementors§

Source§

impl<T> SpecConfig for T
where T: Any + Debug + Send,