pub struct PreparedStatementHandle {
pub handle: i32,
pub num_params: i32,
pub parameter_types: Vec<DataType>,
}Expand description
Handle to a prepared statement on the server.
Fields§
§handle: i32Server-side statement identifier
num_params: i32Number of parameters expected
parameter_types: Vec<DataType>Parameter type information (if available)
Implementations§
Trait Implementations§
Source§impl Clone for PreparedStatementHandle
impl Clone for PreparedStatementHandle
Source§fn clone(&self) -> PreparedStatementHandle
fn clone(&self) -> PreparedStatementHandle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PreparedStatementHandle
impl RefUnwindSafe for PreparedStatementHandle
impl Send for PreparedStatementHandle
impl Sync for PreparedStatementHandle
impl Unpin for PreparedStatementHandle
impl UnsafeUnpin for PreparedStatementHandle
impl UnwindSafe for PreparedStatementHandle
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