pub struct ResultSetMetaData<'local> { /* private fields */ }
Implementations§
Source§impl<'local> ResultSetMetaData<'local>
impl<'local> ResultSetMetaData<'local>
pub fn from_ref( conn: &'local Connection<'local>, statement: JObject<'local>, ) -> Result<Self, Error>
pub fn get_column_count(&self) -> Result<i32, Error>
pub fn get_column_name(&self, column: i32) -> Result<String, Error>
pub fn get_columns_name(&self) -> Result<Vec<String>, Error>
Auto Trait Implementations§
impl<'local> Freeze for ResultSetMetaData<'local>
impl<'local> RefUnwindSafe for ResultSetMetaData<'local>
impl<'local> !Send for ResultSetMetaData<'local>
impl<'local> !Sync for ResultSetMetaData<'local>
impl<'local> Unpin for ResultSetMetaData<'local>
impl<'local> UnwindSafe for ResultSetMetaData<'local>
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