pub struct ParameterMap {
pub count: u32,
pub names: Vec<(Vec<u8>, u32)>,
}Expand description
Where a statement’s parameters ended up.
Fields§
§count: u32The highest parameter index the statement used.
names: Vec<(Vec<u8>, u32)>Named parameters and the index each was assigned.
Implementations§
Trait Implementations§
Source§impl Clone for ParameterMap
impl Clone for ParameterMap
Source§impl Debug for ParameterMap
impl Debug for ParameterMap
Source§impl Default for ParameterMap
impl Default for ParameterMap
impl Eq for ParameterMap
Source§impl PartialEq for ParameterMap
impl PartialEq for ParameterMap
impl StructuralPartialEq for ParameterMap
Auto Trait Implementations§
impl Freeze for ParameterMap
impl RefUnwindSafe for ParameterMap
impl Send for ParameterMap
impl Sync for ParameterMap
impl Unpin for ParameterMap
impl UnsafeUnpin for ParameterMap
impl UnwindSafe for ParameterMap
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