#[repr(i16)]pub enum ParamType {
Unknown = 0,
Input = 1,
InputOutput = 2,
ResultCol = 3,
Output = 4,
ReturnValue = 5,
InputOutputStream = 8,
OutputStream = 16,
}
Expand description
Used by SQLBindParameter
.
Variants§
Unknown = 0
Input = 1
InputOutput = 2
ResultCol = 3
Output = 4
ReturnValue = 5
InputOutputStream = 8
OutputStream = 16
Trait Implementations§
source§impl PartialEq for ParamType
impl PartialEq for ParamType
impl Copy for ParamType
impl Eq for ParamType
impl StructuralEq for ParamType
impl StructuralPartialEq for ParamType
Auto Trait Implementations§
impl RefUnwindSafe for ParamType
impl Send for ParamType
impl Sync for ParamType
impl Unpin for ParamType
impl UnwindSafe for ParamType
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