pub enum SeekFrom { Start(u64), End(i64), Current(i64), }
Enumeration of possible methods to seek within an I/O object.
It is used by the Seek
trait.
Start(u64)
Set the offset to the provided number of bytes.
End(i64)
Set 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)
Set 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.
impl Copy for SeekFrom
[src]
impl PartialEq for SeekFrom
[src]
fn eq(&self, __arg_0: &SeekFrom) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &SeekFrom) -> bool
This method tests for !=
.
impl Eq for SeekFrom
[src]
impl Clone for SeekFrom
[src]
fn clone(&self) -> SeekFrom
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for SeekFrom
[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter.
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/io/enum.SeekFrom.html