squote 0.1.2

A clone of the quote crate that uses a String as its backing store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0599]: no method named `quote_into_iter` found for struct `std::net::Ipv4Addr` in the current scope
  --> $DIR/not-repeatable.rs:6:13
   |
6  |       let _ = quote! { #(#ip)* };
   |               ^^^^^^^^^^^^^^^^^^ method not found in `std::net::Ipv4Addr`
   |
   = note: the method `quote_into_iter` exists but the following trait bounds were not satisfied:
           `std::net::Ipv4Addr: std::iter::Iterator`
           which is required by `std::net::Ipv4Addr: quote::__private::ext::RepIteratorExt`
           `&std::net::Ipv4Addr: std::iter::Iterator`
           which is required by `&std::net::Ipv4Addr: quote::__private::ext::RepIteratorExt`
           `std::net::Ipv4Addr: quote::to_tokens::ToTokens`
           which is required by `std::net::Ipv4Addr: quote::__private::ext::RepToTokensExt`
           `&mut std::net::Ipv4Addr: std::iter::Iterator`
           which is required by `&mut std::net::Ipv4Addr: quote::__private::ext::RepIteratorExt`
   = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)