Struct odbc_api::TruncationInfo
source · pub struct TruncationInfo {
pub indicator: Option<usize>,
pub buffer_index: usize,
}
Expand description
Returned by RowSetBuffer::find_truncation
. Contains information about the truncation found.
Fields§
§indicator: Option<usize>
Length of the untruncated value if known
buffer_index: usize
Zero based buffer index of the column in which the truncation occurred.
Auto Trait Implementations§
impl RefUnwindSafe for TruncationInfo
impl Send for TruncationInfo
impl Sync for TruncationInfo
impl Unpin for TruncationInfo
impl UnwindSafe for TruncationInfo
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