pub struct OdbcValue { /* private fields */ }Available on crate feature
odbc only.Implementationsยง
Trait Implementationsยง
Sourceยงimpl Value for OdbcValue
impl Value for OdbcValue
type Database = Odbc
Sourceยงfn as_ref(&self) -> OdbcValueRef<'_>
fn as_ref(&self) -> OdbcValueRef<'_>
Get this value as a reference.
Sourceยงfn type_info(&self) -> Cow<'_, OdbcTypeInfo>
fn type_info(&self) -> Cow<'_, OdbcTypeInfo>
Get the type information for this value.
Sourceยงfn decode_unchecked<'r, T>(&'r self) -> T
fn decode_unchecked<'r, T>(&'r self) -> T
Decode this single value into the requested type. Read more
Auto Trait Implementationsยง
impl Freeze for OdbcValue
impl RefUnwindSafe for OdbcValue
impl Send for OdbcValue
impl Sync for OdbcValue
impl Unpin for OdbcValue
impl UnsafeUnpin for OdbcValue
impl UnwindSafe for OdbcValue
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self> โ
fn into_either(self, into_left: bool) -> Either<Self, Self> โ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more