Enum std::io::SeekFrom 1.0.0[−][src]
Expand description
Enumeration of possible methods to seek within an I/O object.
It is used by the Seek
trait.
Variants
Start(u64)
Tuple Fields
0: u64
Sets the offset to the provided number of bytes.
End(i64)
Tuple Fields
0: i64
Sets the offset to the size of this object plus the specified number of bytes.
It is possible to seek beyond the end of an object, but it’s an error to seek before byte 0.
Current(i64)
Tuple Fields
0: i64
Sets the offset to the current position plus the specified number of bytes.
It is possible to seek beyond the end of an object, but it’s an error to seek before byte 0.