[−][src]Struct odbc_iter::odbc_type::CowString
Owned or borrowed string that can be bound as statement parameter.
Trait Implementations
impl<'s> Debug for CowString<'s>[src]
impl<'s> Eq for CowString<'s>[src]
impl<'s> From<&'s str> for CowString<'s>[src]
impl<'s> From<Cow<'s, str>> for CowString<'s>[src]
impl<'s> From<String> for CowString<'s>[src]
impl<'s> OdbcType<'s> for CowString<'s>[src]
fn sql_data_type() -> SqlDataType[src]
fn c_data_type() -> SqlCDataType[src]
fn convert(buffer: &'s [u8]) -> Self[src]
fn column_size(&self) -> SQLULEN[src]
fn value_ptr(&self) -> SQLPOINTER[src]
fn null_bytes_count() -> usize[src]
fn decimal_digits(&self) -> i16[src]
impl<'s> PartialEq<CowString<'s>> for CowString<'s>[src]
impl<'s> StructuralEq for CowString<'s>[src]
impl<'s> StructuralPartialEq for CowString<'s>[src]
Auto Trait Implementations
impl<'s> RefUnwindSafe for CowString<'s>
impl<'s> Send for CowString<'s>
impl<'s> Sync for CowString<'s>
impl<'s> Unpin for CowString<'s>
impl<'s> UnwindSafe for CowString<'s>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<'a, T> Output<'a> for T where
T: OdbcType<'a>, [src]
T: OdbcType<'a>,
fn get_data(
stmt: &mut Raii<Stmt>,
col_or_param_num: u16,
buffer: &'a mut Vec<u8>
) -> Return<Option<T>>[src]
stmt: &mut Raii<Stmt>,
col_or_param_num: u16,
buffer: &'a mut Vec<u8>
) -> Return<Option<T>>
impl<T> ToErrorNoContext<T> for T[src]
fn to_root_cause(self) -> ErrorNoContext<T>[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.