pub struct Session { /* private fields */ }
Methods from Deref<Target = Session>§
pub fn connection(&self) -> Result<Connection, Error>
Sourcepub async fn noreply_wait(&self) -> Result<(), Error>
pub async fn noreply_wait(&self) -> Result<(), Error>
Ensures that previous queries with the noreply
flag have been
processed by the server
Note that this guarantee only applies to queries run on the given connection.
§Example
We have previously run queries with noreply
set to true
. Now wait until the server has processed them.
session.noreply_wait().await
pub async fn server(&self) -> Result<ServerInfo, Error>
Trait Implementations§
Source§impl Arg for &Session
impl Arg for &Session
fn into_run_opts(self) -> Result<(Connection, Options)>
Auto Trait Implementations§
impl !Freeze for Session
impl !RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl !UnwindSafe for Session
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more