Struct ketos::io::File [] [src]

pub struct File { /* fields omitted */ }

Wraps a fs::File as a shared writer, providing a path for error values.

Methods

impl File
[src]

Creates a new File from an open filehandle and path.

Trait Implementations

impl SharedWrite for File
[src]

Analogous to std::io::Write::write_all; writes all bytes or returns an error. Read more

Analogous to std::io::Write::write_all; writes formatted arguments or returns an error. Read more

Analogous to std::io::Write::flush; flushes the output stream.