Enum tokio_postgres::error::ErrorPosition
[−]
[src]
pub enum ErrorPosition {
Normal(u32),
Internal {
position: u32,
query: String,
},
}Represents the position of an error in a query.
Variants
Normal(u32)A position in the original query.
InternalA position in an internally generated query.
Fields of Internal
position: u32 | The byte position. |
query: String | A query generated by the Postgres server. |
Trait Implementations
impl Eq for ErrorPosition[src]
impl PartialEq<ErrorPosition> for ErrorPosition[src]
fn eq(&self, __arg_0: &ErrorPosition) -> bool
fn ne(&self, __arg_0: &ErrorPosition) -> bool
impl Debug for ErrorPosition[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.