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)
Sets the offset to the provided number of bytes.
Tuple Fields of Start
0: u64
End(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.
Tuple Fields of End
0: i64
Current(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.
Tuple Fields of Current
0: i64
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SeekFrom
impl UnwindSafe for SeekFrom
Blanket Implementations
Mutably borrows from an owned value. Read more