[][src]Struct msql_srv::InitWriter

pub struct InitWriter<'a, W: Write> { /* fields omitted */ }

Convenience type for responding to a client USE <db> command.

Implementations

impl<'a, W: Write + 'a> InitWriter<'a, W>[src]

pub fn ok(self) -> Result<()>[src]

Tell client that database context has been changed

pub fn error<E: ?Sized>(self, kind: ErrorKind, msg: &E) -> Result<()> where
    E: Borrow<[u8]>, 
[src]

Tell client that there was a problem changing the database context. Although you can return any valid MySQL error code you probably want to keep it similar to the MySQL server and issue either a ErrorKind::ER_BAD_DB_ERROR or a ErrorKind::ER_DBACCESS_DENIED_ERROR.

Auto Trait Implementations

impl<'a, W> RefUnwindSafe for InitWriter<'a, W> where
    W: RefUnwindSafe

impl<'a, W> Send for InitWriter<'a, W> where
    W: Send

impl<'a, W> Sync for InitWriter<'a, W> where
    W: Sync

impl<'a, W> Unpin for InitWriter<'a, W>

impl<'a, W> !UnwindSafe for InitWriter<'a, W>

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> Same<T> for T

type Output = T

Should always be Self

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>,