pub trait ConfigParamWrapper<T> {
    // Required method
    fn into_inner(self) -> T;
}
Expand description

Trait to customize config param representation.

Required Methods§

source

fn into_inner(self) -> T

Converts this wrapper into an underlying type.

Implementors§