Enum core2::io::SeekFrom [−][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.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SeekFrom
impl UnwindSafe for SeekFrom
Blanket Implementations
Mutably borrows from an owned value. Read more