[][src]Struct json_tools::FilterTypedKeyValuePairs

pub struct FilterTypedKeyValuePairs<I: IntoIterator<Item = Token>> { /* fields omitted */ }

Removes tokens matching ,? "key": <type> ,?., where <type> is a given token type. Useful for removing null values, or all numbers, for instance. Is made in a resilient fashion which doesn't require a sane input token stream.

Methods

impl<I: IntoIterator<Item = Token>> FilterTypedKeyValuePairs<I>[src]

Important traits for FilterTypedKeyValuePairs<I>
pub fn new(src: I, value_type: TokenType) -> FilterTypedKeyValuePairs<I>[src]

Returns a new FilterTypedKeyValuePairs instance from a Token iterator

Trait Implementations

impl<I> Iterator for FilterTypedKeyValuePairs<I> where
    I: IntoIterator<Item = Token>, 
[src]

type Item = Token

The type of the elements being iterated over.

Auto Trait Implementations

impl<I> RefUnwindSafe for FilterTypedKeyValuePairs<I> where
    <I as IntoIterator>::IntoIter: RefUnwindSafe

impl<I> Send for FilterTypedKeyValuePairs<I> where
    <I as IntoIterator>::IntoIter: Send

impl<I> Sync for FilterTypedKeyValuePairs<I> where
    <I as IntoIterator>::IntoIter: Sync

impl<I> Unpin for FilterTypedKeyValuePairs<I> where
    <I as IntoIterator>::IntoIter: Unpin

impl<I> UnwindSafe for FilterTypedKeyValuePairs<I> where
    <I as IntoIterator>::IntoIter: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.