Function not_in

Source
fn not_in(
    fields: &'static [&'static str],
    start: &BytesStart<'_>,
    decoder: Decoder,
) -> Result<bool, DeError>
Expand description

Check if tag start is included in the fields list. decoder is used to get a string representation of a tag.

Returns true, if start is not in the fields list and false otherwise.