Struct sqlite3::SqliteError [] [src]

pub struct SqliteError {
    pub kind: SqliteErrorCode,
    pub desc: &'static str,
    pub detail: Option<String>,
}

Error results

Fields

kind of error, by code

static error description

dynamic detail (optional)

Methods

impl SqliteError
[src]

Get a detailed description of the error

Trait Implementations

impl From<NulError> for SqliteError
[src]

Performs the conversion.

impl From<ParseError> for SqliteError
[src]

Performs the conversion.

impl Debug for SqliteError
[src]

Formats the value using the given formatter.

impl PartialEq for SqliteError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SqliteError
[src]

impl Display for SqliteError
[src]

Formats the value using the given formatter. Read more

impl Error for SqliteError
[src]

A short description of the error. Read more

The lower-level cause of this error, if any. Read more