#[repr(C)]pub struct PreparedStatement {
pub stmt_name: [c_char; 64],
pub plansource: *mut CachedPlanSource,
pub from_sql: bool,
pub prepare_time: TimestampTz,
}
Fields§
§stmt_name: [c_char; 64]
§plansource: *mut CachedPlanSource
§from_sql: bool
§prepare_time: TimestampTz
Trait Implementations§
Source§impl Clone for PreparedStatement
impl Clone for PreparedStatement
Source§fn clone(&self) -> PreparedStatement
fn clone(&self) -> PreparedStatement
Returns a copy 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 moreSource§impl Debug for PreparedStatement
impl Debug for PreparedStatement
Source§impl Default for PreparedStatement
impl Default for PreparedStatement
impl Copy for PreparedStatement
Auto Trait Implementations§
impl Freeze for PreparedStatement
impl RefUnwindSafe for PreparedStatement
impl !Send for PreparedStatement
impl !Sync for PreparedStatement
impl Unpin for PreparedStatement
impl UnwindSafe for PreparedStatement
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