Lines Matching refs:into
61 Self::new2(stream.into())
83 /// A cheaply copyable cursor into a `TokenBuffer`.
85 /// This cursor holds a shared reference into the immutable data which is used
107 // (`Ident` is a reference into a thread-local table). This is because
183 /// a cursor into that group and one pointing to the next `TokenTree`.
278 /// Copies all remaining tokens visible from this cursor into a
299 Entry::Group(group, end_offset) => (group.clone().into(), *end_offset),
300 Entry::Literal(literal) => (literal.clone().into(), 1),
301 Entry::Ident(ident) => (ident.clone().into(), 1),
302 Entry::Punct(punct) => (punct.clone().into(), 1),