[][src]Struct odbc_safe::DiagResult

pub struct DiagResult {
    pub state: [SQLCHAR; 6],
    pub native_error: SQLINTEGER,
    pub text_length: SQLSMALLINT,
}

Result of Diagnostics::diagnostics

Fields

state: [SQLCHAR; 6]

A five-character SQLSTATE code (and terminating NULL) for the diagnostic record rec_number. The first two characters indicate the class; the next three indicate the subclass. For more information, see [SQLSTATE][1]s. [1]: https://docs.microsoft.com/sql/odbc/reference/develop-app/sqlstates

native_error: SQLINTEGER

Native error code specific to the data source.

text_length: SQLSMALLINT

The total number of characters (excluding the terminating NULL) available to return in message_text.

Trait Implementations

impl Clone for DiagResult[src]

impl Copy for DiagResult[src]

impl Debug for DiagResult[src]

Auto Trait Implementations

impl Send for DiagResult

impl Sync for DiagResult

impl Unpin for DiagResult

impl UnwindSafe for DiagResult

impl RefUnwindSafe for DiagResult

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]