[][src]Struct mysql_async::Conn

pub struct Conn { /* fields omitted */ }

Methods

impl Conn[src]

pub fn last_insert_id(&self) -> Option<u64>[src]

Returns the ID generated by a query (usually INSERT) on a table with a column having the AUTO_INCREMENT attribute. Returns None if there was no previous query on the connection or if the query did not update an AUTO_INCREMENT value.

pub fn affected_rows(&self) -> u64[src]

Returns the number of rows affected by the last INSERT, UPDATE, REPLACE or DELETE query.

pub async fn new<T: Into<Opts>>(opts: T) -> Result<Conn>[src]

Returns future that resolves to Conn.

pub async fn from_url<T: AsRef<str>>(url: T) -> Result<Conn>[src]

Returns future that resolves to Conn.

pub async fn reset(self) -> Result<Conn>[src]

Returns future that resolves to a Conn with COM_RESET_CONNECTION executed on it.

Trait Implementations

impl Queryable for Conn[src]

impl Drop for Conn[src]

impl Debug for Conn[src]

Auto Trait Implementations

impl Send for Conn

impl Unpin for Conn

impl Sync for Conn

impl !UnwindSafe for Conn

impl !RefUnwindSafe for Conn

Blanket Implementations

impl<T> ConnectionLike for T where
    T: ConnectionLike, 
[src]

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self