mirror of
https://github.com/pezkuwichain/serde.git
synced 2026-06-13 13:41:01 +00:00
address comments by erickt
This commit is contained in:
+2
-34
@@ -93,10 +93,6 @@ macro_rules! impl_deserialize_num_method {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct NumericVisitor<T> {
|
|
||||||
marker: PhantomData<T>,
|
|
||||||
}
|
|
||||||
|
|
||||||
pub struct PrimitiveVisitor<T> {
|
pub struct PrimitiveVisitor<T> {
|
||||||
marker: PhantomData<T>,
|
marker: PhantomData<T>,
|
||||||
}
|
}
|
||||||
@@ -110,18 +106,9 @@ impl<T> PrimitiveVisitor<T> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> NumericVisitor<T> {
|
|
||||||
#[inline]
|
|
||||||
pub fn new() -> Self {
|
|
||||||
NumericVisitor {
|
|
||||||
marker: PhantomData,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<
|
impl<
|
||||||
T: Deserialize + FromPrimitive + str::FromStr
|
T: Deserialize + FromPrimitive + str::FromStr
|
||||||
> Visitor for NumericVisitor<T> {
|
> Visitor for PrimitiveVisitor<T> {
|
||||||
type Value = T;
|
type Value = T;
|
||||||
|
|
||||||
impl_deserialize_num_method!(isize, visit_isize, from_isize);
|
impl_deserialize_num_method!(isize, visit_isize, from_isize);
|
||||||
@@ -145,25 +132,6 @@ impl<
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<
|
|
||||||
T: Deserialize + FromPrimitive
|
|
||||||
> Visitor for PrimitiveVisitor<T> {
|
|
||||||
type Value = T;
|
|
||||||
|
|
||||||
impl_deserialize_num_method!(isize, visit_isize, from_isize);
|
|
||||||
impl_deserialize_num_method!(i8, visit_i8, from_i8);
|
|
||||||
impl_deserialize_num_method!(i16, visit_i16, from_i16);
|
|
||||||
impl_deserialize_num_method!(i32, visit_i32, from_i32);
|
|
||||||
impl_deserialize_num_method!(i64, visit_i64, from_i64);
|
|
||||||
impl_deserialize_num_method!(usize, visit_usize, from_usize);
|
|
||||||
impl_deserialize_num_method!(u8, visit_u8, from_u8);
|
|
||||||
impl_deserialize_num_method!(u16, visit_u16, from_u16);
|
|
||||||
impl_deserialize_num_method!(u32, visit_u32, from_u32);
|
|
||||||
impl_deserialize_num_method!(u64, visit_u64, from_u64);
|
|
||||||
impl_deserialize_num_method!(f32, visit_f32, from_f32);
|
|
||||||
impl_deserialize_num_method!(f64, visit_f64, from_f64);
|
|
||||||
}
|
|
||||||
|
|
||||||
macro_rules! impl_deserialize_num {
|
macro_rules! impl_deserialize_num {
|
||||||
($ty:ty) => {
|
($ty:ty) => {
|
||||||
impl Deserialize for $ty {
|
impl Deserialize for $ty {
|
||||||
@@ -171,7 +139,7 @@ macro_rules! impl_deserialize_num {
|
|||||||
fn deserialize<D>(deserializer: &mut D) -> Result<$ty, D::Error>
|
fn deserialize<D>(deserializer: &mut D) -> Result<$ty, D::Error>
|
||||||
where D: Deserializer,
|
where D: Deserializer,
|
||||||
{
|
{
|
||||||
deserializer.visit(NumericVisitor::new())
|
deserializer.visit(PrimitiveVisitor::new())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-5
@@ -2,7 +2,7 @@ use std::io;
|
|||||||
use std::iter::Peekable;
|
use std::iter::Peekable;
|
||||||
|
|
||||||
pub struct LineColIterator<Iter: Iterator<Item=io::Result<u8>>> {
|
pub struct LineColIterator<Iter: Iterator<Item=io::Result<u8>>> {
|
||||||
iter: Peekable<Iter>,
|
iter: Iter,
|
||||||
line: usize,
|
line: usize,
|
||||||
col: usize,
|
col: usize,
|
||||||
}
|
}
|
||||||
@@ -10,7 +10,7 @@ pub struct LineColIterator<Iter: Iterator<Item=io::Result<u8>>> {
|
|||||||
impl<Iter: Iterator<Item=io::Result<u8>>> LineColIterator<Iter> {
|
impl<Iter: Iterator<Item=io::Result<u8>>> LineColIterator<Iter> {
|
||||||
pub fn new(iter: Iter) -> LineColIterator<Iter> {
|
pub fn new(iter: Iter) -> LineColIterator<Iter> {
|
||||||
LineColIterator {
|
LineColIterator {
|
||||||
iter: iter.peekable(),
|
iter: iter,
|
||||||
line: 1,
|
line: 1,
|
||||||
col: 0,
|
col: 0,
|
||||||
}
|
}
|
||||||
@@ -23,14 +23,16 @@ impl<Iter: Iterator<Item=io::Result<u8>>> LineColIterator<Iter> {
|
|||||||
pub fn col(&self) -> usize { self.col }
|
pub fn col(&self) -> usize { self.col }
|
||||||
|
|
||||||
/// Gets a reference to the underlying iterator.
|
/// Gets a reference to the underlying iterator.
|
||||||
pub fn get_ref(&self) -> &Peekable<Iter> { &self.iter }
|
pub fn get_ref(&self) -> &Iter { &self.iter }
|
||||||
|
|
||||||
/// Gets a mutable reference to the underlying iterator.
|
/// Gets a mutable reference to the underlying iterator.
|
||||||
pub fn get_mut(&mut self) -> &mut Peekable<Iter> { &mut self.iter }
|
pub fn get_mut(&mut self) -> &mut Iter { &mut self.iter }
|
||||||
|
|
||||||
/// Unwraps this `LineColIterator`, returning the underlying iterator.
|
/// Unwraps this `LineColIterator`, returning the underlying iterator.
|
||||||
pub fn into_inner(self) -> Peekable<Iter> { self.iter }
|
pub fn into_inner(self) -> Iter { self.iter }
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<Iter: Iterator<Item=io::Result<u8>>> LineColIterator<Peekable<Iter>> {
|
||||||
/// peeks at the next value
|
/// peeks at the next value
|
||||||
pub fn peek(&mut self) -> Option<&io::Result<u8>> { self.iter.peek() }
|
pub fn peek(&mut self) -> Option<&io::Result<u8>> { self.iter.peek() }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user