[][src]Trait transporter::FileCreator

pub trait FileCreator {
    type Writer: Write;
    fn create(&mut self, path: &Path) -> Result<Self::Writer>;
}

Associated Types

Loading content...

Required methods

fn create(&mut self, path: &Path) -> Result<Self::Writer>

Loading content...

Implementors

impl FileCreator for FsFileCreator[src]

type Writer = File

Loading content...