pub struct MySQLResultSet<'a> { /* private fields */ }
Trait Implementations§
Source§impl<'a> ResultSet for MySQLResultSet<'a>
impl<'a> ResultSet for MySQLResultSet<'a>
Source§fn next(&mut self) -> bool
fn next(&mut self) -> bool
Move the cursor to the next available row if one exists and return true if it does
fn get_i8(&self, i: u64) -> Result<Option<i8>>
fn get_i16(&self, i: u64) -> Result<Option<i16>>
fn get_i32(&self, i: u64) -> Result<Option<i32>>
fn get_i64(&self, i: u64) -> Result<Option<i64>>
fn get_f32(&self, i: u64) -> Result<Option<f32>>
fn get_f64(&self, i: u64) -> Result<Option<f64>>
fn get_string(&self, i: u64) -> Result<Option<String>>
fn get_bytes(&self, i: u64) -> Result<Option<Vec<u8>>>
Auto Trait Implementations§
impl<'a> !Freeze for MySQLResultSet<'a>
impl<'a> !RefUnwindSafe for MySQLResultSet<'a>
impl<'a> Send for MySQLResultSet<'a>
impl<'a> Sync for MySQLResultSet<'a>
impl<'a> Unpin for MySQLResultSet<'a>
impl<'a> !UnwindSafe for MySQLResultSet<'a>
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