#[repr(C)]pub struct PgQuerySplitResult {
pub stmts: *mut *mut PgQuerySplitStmt,
pub n_stmts: c_int,
pub stderr_buffer: *mut c_char,
pub error: *mut PgQueryError,
}
Fields§
§stmts: *mut *mut PgQuerySplitStmt
§n_stmts: c_int
§stderr_buffer: *mut c_char
§error: *mut PgQueryError
Trait Implementations§
Source§impl Clone for PgQuerySplitResult
impl Clone for PgQuerySplitResult
Source§fn clone(&self) -> PgQuerySplitResult
fn clone(&self) -> PgQuerySplitResult
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 PgQuerySplitResult
impl Debug for PgQuerySplitResult
impl Copy for PgQuerySplitResult
Auto Trait Implementations§
impl Freeze for PgQuerySplitResult
impl RefUnwindSafe for PgQuerySplitResult
impl !Send for PgQuerySplitResult
impl !Sync for PgQuerySplitResult
impl Unpin for PgQuerySplitResult
impl UnwindSafe for PgQuerySplitResult
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