[][src]Struct tiberius::error::TokenError

pub struct TokenError { /* fields omitted */ }

An error token returned from the server.

Implementations

impl TokenError[src]

pub fn code(&self) -> u32[src]

The error code, see descriptions from the manual.

pub fn state(&self) -> u8[src]

The error state, used as a modifier to the error number.

pub fn class(&self) -> u8[src]

The class (severity) of the error. A class of less than 10 indicates an informational message.

pub fn message(&self) -> &str[src]

The error message returned from the server.

pub fn server(&self) -> &str[src]

The server name.

pub fn procedure(&self) -> &str[src]

The name of the stored procedure causing the error.

pub fn line(&self) -> u32[src]

The line number in the SQL batch or stored procedure that caused the error. Line numbers begin at 1. If the line number is not applicable to the message, the value is 0.

Trait Implementations

impl Clone for TokenError[src]

impl Debug for TokenError[src]

impl Display for TokenError[src]

impl Error for TokenError[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> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,