pub struct DecimalArrayDecoder<D: DecimalType> {
precision: u8,
scale: i8,
phantom: PhantomData<fn(_: D) -> D>,
}
Fields§
§precision: u8
§scale: i8
§phantom: PhantomData<fn(_: D) -> D>
Implementations§
Trait Implementations§
Source§impl<D> ArrayDecoder for DecimalArrayDecoder<D>where
D: DecimalType,
impl<D> ArrayDecoder for DecimalArrayDecoder<D>where
D: DecimalType,
Auto Trait Implementations§
impl<D> Freeze for DecimalArrayDecoder<D>
impl<D> RefUnwindSafe for DecimalArrayDecoder<D>
impl<D> Send for DecimalArrayDecoder<D>
impl<D> Sync for DecimalArrayDecoder<D>
impl<D> Unpin for DecimalArrayDecoder<D>
impl<D> UnwindSafe for DecimalArrayDecoder<D>
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