[][src]Trait atm::storage::IntoInner

pub trait IntoInner: StorageBackend {
    type Inner;
    fn into_inner(self) -> Result<Self::Inner, Self::Error>;
}

Trait to implement functionality for storage backends to expose the underlying (inner) storage object.

Associated Types

type Inner

Type of inner object

Loading content...

Required methods

fn into_inner(self) -> Result<Self::Inner, Self::Error>

Finish writing storage backends and return the inner object

Loading content...

Implementors

impl IntoInner for BatchTarFile[src]

type Inner = BufWriter<File>

impl<G: PathGenerator> IntoInner for TarFile<G>[src]

type Inner = BufWriter<File>

impl<G: PathGenerator> IntoInner for TarGzFile<G>[src]

type Inner = GzEncoder<BufWriter<File>>

impl<W, G> IntoInner for TarArchive<W, G> where
    W: Write,
    G: PathGenerator
[src]

type Inner = W

Loading content...