Enum postgres::IsolationLevel
[−]
[src]
pub enum IsolationLevel { ReadUncommitted, ReadCommitted, RepeatableRead, Serializable, }
An enumeration of transaction isolation levels.
See the Postgres documentation for full details on the semantics of each level.
Variants
ReadUncommitted | The "read uncommitted" level. In current versions of Postgres, this behaves identically to
|
ReadCommitted | The "read committed" level. This is the default isolation level in Postgres. |
RepeatableRead | The "repeatable read" level. |
Serializable | The "serializable" level. |