Struct Tokens
struct Tokens<'i, R> { ... }
An iterator over Tokens. It is created by Pair::tokens and Pairs::tokens.
Implementations
impl<'i, R> Freeze for Tokens<'i, R>
impl<'i, R> RefUnwindSafe for Tokens<'i, R>
impl<'i, R> Send for Tokens<'i, R>
impl<'i, R> Sync for Tokens<'i, R>
impl<'i, R> Unpin for Tokens<'i, R>
impl<'i, R> UnsafeUnpin for Tokens<'i, R>
impl<'i, R> UnwindSafe for Tokens<'i, R>
impl<'i, R: $crate::clone::Clone> Clone for Tokens<'i, R>
fn clone(self: &Self) -> Tokens<'i, R>
impl<'i, R: RuleType> Debug for Tokens<'i, R>
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl<'i, R: RuleType> DoubleEndedIterator for Tokens<'i, R>
fn next_back(self: &mut Self) -> Option<<Self as >::Item>
impl<'i, R: RuleType> ExactSizeIterator for Tokens<'i, R>
fn len(self: &Self) -> usize
impl<'i, R: RuleType> Iterator for Tokens<'i, R>
fn next(self: &mut Self) -> Option<<Self as >::Item>fn size_hint(self: &Self) -> (usize, Option<usize>)
impl<I> IntoIterator for Tokens<'i, R>
fn into_iter(self: Self) -> I
impl<T> Any for Tokens<'i, R>
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Tokens<'i, R>
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Tokens<'i, R>
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> CloneToUninit for Tokens<'i, R>
unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)
impl<T> From for Tokens<'i, R>
fn from(t: T) -> TReturns the argument unchanged.
impl<T> ToOwned for Tokens<'i, R>
fn to_owned(self: &Self) -> Tfn clone_into(self: &Self, target: &mut T)
impl<T, U> Into for Tokens<'i, R>
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Tokens<'i, R>
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Tokens<'i, R>
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>