pub struct PrepareResult {
pub columns: Vec<ColumnDesc>,
pub param_oids: Vec<u32>,
}Expand description
Result of a prepare_describe call – column and parameter metadata
without executing the query.
Fields§
§columns: Vec<ColumnDesc>Output columns (empty for INSERT/UPDATE/DELETE without RETURNING).
param_oids: Vec<u32>PostgreSQL OIDs of the expected parameter types.
Trait Implementations§
Source§impl Clone for PrepareResult
impl Clone for PrepareResult
Source§fn clone(&self) -> PrepareResult
fn clone(&self) -> PrepareResult
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 PrepareResult
impl RefUnwindSafe for PrepareResult
impl Send for PrepareResult
impl Sync for PrepareResult
impl Unpin for PrepareResult
impl UnsafeUnpin for PrepareResult
impl UnwindSafe for PrepareResult
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