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

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

An object opened in this mode may be written to.

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

Trait Implementations

impl Debug for Mode
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Mode

impl Sync for Mode