pub trait HeaderObjTraitBoxExt: Sized {
    fn downcast<H>(self) -> Result<Box<Header<H>>, Self>
    where
        H: HeaderKind
; }

Required Methods

Implementations on Foreign Types

Implementors