Lines Matching defs:Parse
4 use crate::parse::{Parse, Parser};
139 /// Parse a syntax tree node from the content of this string literal.
172 pub fn parse<T: Parse>(&self) -> Result<T> {
193 /// // Parse a string literal like "a::b::c" into a Path, not allowing
226 // Parse string literal into a token stream with every span equal to the
396 /// use syn::parse::{Parse, ParseStream, Result};
402 /// impl Parse for Port {
812 use crate::parse::{Parse, ParseStream, Result};
816 impl Parse for Lit {
887 impl Parse for LitStr {
898 impl Parse for LitByteStr {
909 impl Parse for LitByte {
920 impl Parse for LitChar {
931 impl Parse for LitInt {
942 impl Parse for LitFloat {
953 impl Parse for LitBool {