pub trait IntoHashSetup<'a> {
// Required method
fn into_hash_setup(
self,
f: fn(&'a str) -> Result<HashSetup<'a>>,
) -> Result<HashSetup<'a>>;
}Expand description
A trait for converting a type into a HashSetup struct.
pub trait IntoHashSetup<'a> {
// Required method
fn into_hash_setup(
self,
f: fn(&'a str) -> Result<HashSetup<'a>>,
) -> Result<HashSetup<'a>>;
}A trait for converting a type into a HashSetup struct.