Crate tsfc

Source

Structs§

Path
A slice of a path (akin to str).
RFile
WFile

Enums§

SeekFrom
Enumeration of possible methods to seek within an I/O object.

Traits§

Read
The Read trait allows for reading bytes from a source.
Seek
The Seek trait provides a cursor which can be moved within a stream of bytes.
Write
A trait for objects which are byte-oriented sinks.

Functions§

create
Like File::create<P: AsRef>(path: P) -> Result but don’t implement trait std::io:Read
open
Like File::open<P: AsRef>(path: P) -> Result but don’t implement trait std::io:Write