pub struct CompiledStatement {
pub sql: String,
pub parameters: Vec<TypedValue>,
pub expected_result_shape: Vec<ResultColumnDescriptor>,
pub shape_fingerprint: String,
}Fields§
§sql: String§parameters: Vec<TypedValue>§expected_result_shape: Vec<ResultColumnDescriptor>§shape_fingerprint: StringTrait Implementations§
Source§impl Clone for CompiledStatement
impl Clone for CompiledStatement
Source§fn clone(&self) -> CompiledStatement
fn clone(&self) -> CompiledStatement
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 moreSource§impl Debug for CompiledStatement
impl Debug for CompiledStatement
Source§impl PartialEq for CompiledStatement
impl PartialEq for CompiledStatement
impl StructuralPartialEq for CompiledStatement
Auto Trait Implementations§
impl Freeze for CompiledStatement
impl RefUnwindSafe for CompiledStatement
impl Send for CompiledStatement
impl Sync for CompiledStatement
impl Unpin for CompiledStatement
impl UnsafeUnpin for CompiledStatement
impl UnwindSafe for CompiledStatement
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