libpna 0.33.0

PNA(Portable-Network-Archive) decoding and encoding library
Documentation
1
2
3
4
5
6
7
//! Trait for extracting the inner writer from layered I/O types.

use std::io;

pub(crate) trait TryIntoInner<T> {
    fn try_into_inner(self) -> io::Result<T>;
}