pub struct Statement;
Expand description
A type parameter for Statement::oci_attr
to get OCI_ATTR_STATEMENT
,
which is the text of the SQL statement prepared.
§Examples
use oracle::oci_attr::Statement;
let mut stmt = conn.statement("select * from dual").build()?;
assert_eq!(stmt.oci_attr::<Statement>()?, "select * from dual");
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Statement
impl RefUnwindSafe for Statement
impl Send for Statement
impl Sync for Statement
impl Unpin for Statement
impl UnwindSafe for Statement
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