Trait IntoAspn

Source
pub trait IntoAspn {
    // Required method
    fn into_aspn(self) -> Aspn;
}
Expand description

A trait for converting a type into a Aspn

Required Methods§

Source

fn into_aspn(self) -> Aspn

Implementors§

Source§

impl<T> IntoAspn for T
where T: Into<Aspn>,