[][src]Struct odbc_api::handles::Record

pub struct Record {
    pub state: [u16; 11],
    pub native_error: i32,
    pub message: Vec<u16>,
}

ODBC Diagnostic Record

The description method of the std::error::Error trait only returns the message. Use std::fmt::Display to retrieve status code and other information.

Fields

state: [u16; 11]native_error: i32message: Vec<u16>

Buffer containing the error message. The buffer already has the correct size, and there is no terminating zero at the end.

Implementations

impl Record[src]

pub fn fill_from(&mut self, handle: &dyn AsHandle, record_number: i16) -> bool[src]

Fill this diagnostic Record from any ODBC handle.

Return

true if a record has been found, false if not.

Trait Implementations

impl Debug for Record[src]

impl Default for Record[src]

impl Display for Record[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.