Crate tsfc
Source - Path
- A slice of a path (akin to
str
). - RFile
- WFile
- SeekFrom
- Enumeration of possible methods to seek within an I/O object.
- 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.
- 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