Enum nix::unistd::Whence [] [src]

#[repr(i32)]
pub enum Whence { SeekSet, SeekCur, SeekEnd, SeekData, SeekHole, }

Directive that tells lseek and lseek64 what the offset is relative to.

Variants

Specify an offset relative to the start of the file.

Specify an offset relative to the current file location.

Specify an offset relative to the end of the file.

Specify an offset relative to the next location in the file greater than or equal to offset that contains some data. If offset points to some data, then the file offset is set to offset.

Specify an offset relative to the next hole in the file greater than or equal to offset. If offset points into the middle of a hole, then the file offset should be set to offset. If there is no hole past offset, then the file offset should be adjusted to the end of the file (i.e., there is an implicit hole at the end of any file).

Trait Implementations

impl Clone for Whence
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Whence
[src]

impl Debug for Whence
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Whence

impl Sync for Whence