pub struct Int64OverflowToTextDecoder;Expand description
Decoder for integer columns whose wire values may exceed i64. Values
fitting i64 produce Value::Integer, values above produce
Value::Text with the base-10 digits preserved.
Trait Implementations§
Source§impl Clone for Int64OverflowToTextDecoder
impl Clone for Int64OverflowToTextDecoder
Source§fn clone(&self) -> Int64OverflowToTextDecoder
fn clone(&self) -> Int64OverflowToTextDecoder
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Int64OverflowToTextDecoder
Source§impl Debug for Int64OverflowToTextDecoder
impl Debug for Int64OverflowToTextDecoder
Source§impl Default for Int64OverflowToTextDecoder
impl Default for Int64OverflowToTextDecoder
Source§fn default() -> Int64OverflowToTextDecoder
fn default() -> Int64OverflowToTextDecoder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for Int64OverflowToTextDecoder
impl RefUnwindSafe for Int64OverflowToTextDecoder
impl Send for Int64OverflowToTextDecoder
impl Sync for Int64OverflowToTextDecoder
impl Unpin for Int64OverflowToTextDecoder
impl UnsafeUnpin for Int64OverflowToTextDecoder
impl UnwindSafe for Int64OverflowToTextDecoder
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