#[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: TimestampTzTrait Implementations§
Source§impl Clone for PreparedStatement
impl Clone for PreparedStatement
Source§fn clone(&self) -> PreparedStatement
fn clone(&self) -> PreparedStatement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PreparedStatement
Source§impl Debug for PreparedStatement
impl Debug for PreparedStatement
Auto Trait Implementations§
impl !Send for PreparedStatement
impl !Sync for PreparedStatement
impl Freeze for PreparedStatement
impl RefUnwindSafe for PreparedStatement
impl Unpin for PreparedStatement
impl UnsafeUnpin 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