Enum postgres_large_object::Mode [] [src]

pub enum Mode {
    Read,
    Write,
    ReadWrite,
}

Large object access modes.

Note that Postgres currently does not make any distinction between the Write and ReadWrite modes.

Variants

Read

An object opened in this mode may only be read from.

Write

An object opened in this mode may be written to.

ReadWrite

An object opened in this mode may be read from or written to.

Trait Implementations

impl Debug for Mode
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.