pub struct Bit(pub u8);Expand description
New type wrapping u8 and binding as SQL_BIT.
If rust would guarantee the representation of bool to be an u8, bool would be the obvious
choice instead. Alas it is not and someday on some platform bool might be something else than
a u8 so let’s use this new type instead.
Tuple Fields
0: u8Implementations
Trait Implementations
sourceimpl CData for Bit
 
impl CData for Bit
sourcefn cdata_type(&self) -> CDataType
 
fn cdata_type(&self) -> CDataType
The identifier of the C data type of the value buffer. When it is retrieving data from the
data source with 
fetch, the driver converts the data to this type. When it sends data to
the source, the driver converts the data from this type. Read moresourcefn indicator_ptr(&self) -> *const isize
 
fn indicator_ptr(&self) -> *const isize
Indicates the length of variable sized types. May be zero for fixed sized types. Used to
determine the size or existence of input parameters. Read more
sourcefn value_ptr(&self) -> *const c_void
 
fn value_ptr(&self) -> *const c_void
Pointer to a value corresponding to the one described by 
cdata_type.sourcefn buffer_length(&self) -> isize
 
fn buffer_length(&self) -> isize
Maximum length of the type in bytes (not characters). It is required to index values in
bound buffers, if more than one parameter is bound. Can be set to zero for types not bound
as parameter arrays, i.e. 
CStr. Read moresourceimpl CDataMut for Bit
 
impl CDataMut for Bit
sourcefn mut_indicator_ptr(&mut self) -> *mut isize
 
fn mut_indicator_ptr(&mut self) -> *mut isize
Indicates the length of variable sized types. May be zero for fixed sized types.
sourcefn mut_value_ptr(&mut self) -> *mut c_void
 
fn mut_value_ptr(&mut self) -> *mut c_void
Pointer to a value corresponding to the one described by cdata_type.
sourceimpl HasDataType for Bit
 
impl HasDataType for Bit
sourceimpl Item for Bit
 
impl Item for Bit
sourceconst BUFFER_KIND: BufferKind = BufferKind::Bit
 
const BUFFER_KIND: BufferKind = BufferKind::Bit
E.g. 
BufferKind::I64 for i64. The kind can be used in a buffer description to
instantiate a super::ColumnarBuffer. Read moresourcefn as_nullable_slice(variant: AnySlice<'_>) -> Option<NullableSlice<'_, Self>>
 
fn as_nullable_slice(variant: AnySlice<'_>) -> Option<NullableSlice<'_, Self>>
Extract the typed nullable buffer from an 
AnySlice.sourcefn as_slice_mut<'a>(variant: AnySliceMut<'a>) -> Option<&'a mut [Self]>
 
fn as_slice_mut<'a>(variant: AnySliceMut<'a>) -> Option<&'a mut [Self]>
Extract the array type from an 
AnySliceMut.sourcefn as_nullable_slice_mut<'a>(
    variant: AnySliceMut<'a>
) -> Option<NullableSliceMut<'a, Self>>
 
fn as_nullable_slice_mut<'a>(
    variant: AnySliceMut<'a>
) -> Option<NullableSliceMut<'a, Self>>
Extract the typed nullable buffer from an 
AnySliceMut.sourceimpl Ord for Bit
 
impl Ord for Bit
1.21.0 · sourcefn max(self, other: Self) -> Self
 
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
 
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
 
fn clamp(self, min: Self, max: Self) -> Selfwhere
    Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialOrd<Bit> for Bit
 
impl PartialOrd<Bit> for Bit
sourcefn partial_cmp(&self, other: &Bit) -> Option<Ordering>
 
fn partial_cmp(&self, other: &Bit) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for 
self and other) and is used by the <=
operator. Read moreimpl Copy for Bit
impl Eq for Bit
impl InputParameter for Bit
impl OutputParameter for Bit
impl StructuralEq for Bit
impl StructuralPartialEq for Bit
Auto Trait Implementations
impl RefUnwindSafe for Bit
impl Send for Bit
impl Sync for Bit
impl Unpin for Bit
impl UnwindSafe for Bit
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    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