Struct rbdc_mysql::stmt::MySqlArguments
source · [−]pub struct MySqlArguments {
pub values: Vec<u8>,
pub types: Vec<MySqlTypeInfo>,
pub null_bitmap: Vec<u8>,
}
Expand description
Implementation of [Arguments
] for MySQL.
Fields
values: Vec<u8>
types: Vec<MySqlTypeInfo>
null_bitmap: Vec<u8>
Implementations
sourceimpl MySqlArguments
impl MySqlArguments
Trait Implementations
sourceimpl Clone for MySqlArguments
impl Clone for MySqlArguments
sourcefn clone(&self) -> MySqlArguments
fn clone(&self) -> MySqlArguments
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for MySqlArguments
impl Debug for MySqlArguments
sourceimpl Default for MySqlArguments
impl Default for MySqlArguments
sourcefn default() -> MySqlArguments
fn default() -> MySqlArguments
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for MySqlArguments
impl Send for MySqlArguments
impl Sync for MySqlArguments
impl Unpin for MySqlArguments
impl UnwindSafe for MySqlArguments
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more