pub trait HeaderTryInto<T>: Sized {
    fn try_into(self) -> Result<T, ComponentCreationError>;
}
Expand description

Workaround for TryFrom,TryInto not being stable.

Required Methods

Implementors