Struct nix::fcntl::OFlag[]

pub struct OFlag { /* fields omitted */ }

Configuration options for opened files.

Methods

impl OFlag

O_ACCMODE: OFlag = OFlag{bits: libc::O_ACCMODE,}

Mask for the access mode of the file.

O_APPEND: OFlag = OFlag{bits: libc::O_APPEND,}

Open the file in append-only mode.

O_ASYNC: OFlag = OFlag{bits: libc::O_ASYNC,}

Generate a signal when input or output becomes possible.

O_CLOEXEC: OFlag = OFlag{bits: libc::O_CLOEXEC,}

Closes the file descriptor once an execve call is made.

Also sets the file offset to the beginning of the file.

O_CREAT: OFlag = OFlag{bits: libc::O_CREAT,}

Create the file if it does not exist.

O_DIRECT: OFlag = OFlag{bits: libc::O_DIRECT,}

Try to minimize cache effects of the I/O for this file.

O_DIRECTORY: OFlag = OFlag{bits: libc::O_DIRECTORY,}

If the specified path isn't a directory, fail.

O_DSYNC: OFlag = OFlag{bits: libc::O_DSYNC,}

Implicitly follow each write() with an fdatasync().

O_EXCL: OFlag = OFlag{bits: libc::O_EXCL,}

Error out if a file was not created.

O_FSYNC: OFlag = OFlag{bits: libc::O_FSYNC,}

Same as O_SYNC.

O_LARGEFILE: OFlag = OFlag{bits: libc::O_LARGEFILE,}

Allow files whose sizes can't be represented in an off_t to be opened.

O_NOATIME: OFlag = OFlag{bits: libc::O_NOATIME,}

Do not update the file last access time during read(2)s.

O_NOCTTY: OFlag = OFlag{bits: libc::O_NOCTTY,}

Don't attach the device as the process' controlling terminal.

O_NDELAY: OFlag = OFlag{bits: libc::O_NDELAY,}

Same as O_NONBLOCK.

O_NOFOLLOW: OFlag = OFlag{bits: libc::O_NOFOLLOW,}

open() will fail if the given path is a symbolic link.

O_NONBLOCK: OFlag = OFlag{bits: libc::O_NONBLOCK,}

When possible, open the file in nonblocking mode.

O_PATH: OFlag = OFlag{bits: libc::O_PATH,}

Obtain a file descriptor for low-level access.

The file itself is not opened and other file operations will fail.

O_RDONLY: OFlag = OFlag{bits: libc::O_RDONLY,}

Only allow reading.

This should not be combined with O_WRONLY or O_RDWR.

O_RDWR: OFlag = OFlag{bits: libc::O_RDWR,}

Allow both reading and writing.

This should not be combined with O_WRONLY or O_RDWR.

O_RSYNC: OFlag = OFlag{bits: libc::O_RSYNC,}

Similar to O_DSYNC but applies to reads instead.

O_SYNC: OFlag = OFlag{bits: libc::O_SYNC,}

Implicitly follow each write() with an fsync().

O_TMPFILE: OFlag = OFlag{bits: libc::O_TMPFILE,}

Create an unnamed temporary file.

O_TRUNC: OFlag = OFlag{bits: libc::O_TRUNC,}

Truncate an existing regular file to 0 length if it allows writing.

O_WRONLY: OFlag = OFlag{bits: libc::O_WRONLY,}

Only allow writing.

This should not be combined with O_RDONLY or O_RDWR.

Returns an empty set of flags.

Returns the set containing all flags.

Returns the raw value of the flags currently stored.

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

Returns true if no flags are currently stored.

Returns true if all flags are currently set.

Returns true if there are flags common to both self and other.

Returns true all of the flags in other are contained within self.

Inserts the specified flags in-place.

Removes the specified flags in-place.

Toggles the specified flags in-place.

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Copy for OFlag

impl PartialEq for OFlag

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for OFlag

impl Clone for OFlag

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd for OFlag

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Ord for OFlag

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Hash for OFlag

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for OFlag

Formats the value using the given formatter. Read more

impl Binary for OFlag

Formats the value using the given formatter.

impl Octal for OFlag

Formats the value using the given formatter.

impl LowerHex for OFlag

Formats the value using the given formatter.

impl UpperHex for OFlag

Formats the value using the given formatter.

impl BitOr for OFlag

The resulting type after applying the | operator.

Returns the union of the two sets of flags.

impl BitOrAssign for OFlag

Adds the set of flags.

impl BitXor for OFlag

The resulting type after applying the ^ operator.

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign for OFlag

Toggles the set of flags.

impl BitAnd for OFlag

The resulting type after applying the & operator.

Returns the intersection between the two sets of flags.

impl BitAndAssign for OFlag

Disables all flags disabled in the set.

impl Sub for OFlag

The resulting type after applying the - operator.

Returns the set difference of the two sets of flags.

impl SubAssign for OFlag

Disables all flags enabled in the set.

impl Not for OFlag

The resulting type after applying the ! operator.

Returns the complement of this set of flags.

impl Extend<OFlag> for OFlag

Extends a collection with the contents of an iterator. Read more

impl FromIterator<OFlag> for OFlag

Creates a value from an iterator. Read more

Auto Trait Implementations

impl Send for OFlag

impl Sync for OFlag