pub enum ErrorPosition {
Normal(u32),
Internal {
position: u32,
query: String,
},
}
Represents the position of an error in a query.
A position in the original query.
A position in an internally generated query.
Fields of Internal
position: u32 | |
query: String | A query generated by the Postgres server.
|
Performs copy-assignment from source
. Read more
This method tests for self
and other
values to be equal, and is used by ==
. Read more
This method tests for !=
.
Formats the value using the given formatter. Read more