Trait miniconf::IntoKeys

source ·
pub trait IntoKeys {
    type IntoKeys: Keys;

    // Required method
    fn into_keys(self) -> Self::IntoKeys;
}
Expand description

Capability to be converted into a Keys

Required Associated Types§

source

type IntoKeys: Keys

The specific Keys implementor.

Required Methods§

source

fn into_keys(self) -> Self::IntoKeys

Convert self into a Keys implementor.

Implementors§