Struct WalkTreePostfix

pub struct WalkTreePostfix<S, B> { /* private fields */ }

ParallelIterator for arbitrary tree-shaped patterns. Returned by the [walk_tree_postfix()] function.

Trait Implementations

impl<S, B, I> ParallelIterator for WalkTreePostfix<S, B> where S: Send, B: Fn(&S) -> I + Send + Sync, I: IntoIterator<Item = S>,

type Item = S;
fn drive_unindexed<C>(self, consumer: C) -> C::Result
where
    C: UnindexedConsumer<Self::Item>,

impl<S: Debug, B: Debug> Debug for WalkTreePostfix<S, B>

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Auto Trait Implementations

impl<S, B> Freeze for WalkTreePostfix<S, B> where S: Freeze, B: Freeze,

impl<S, B> RefUnwindSafe for WalkTreePostfix<S, B> where S: RefUnwindSafe, B: RefUnwindSafe,

impl<S, B> Send for WalkTreePostfix<S, B> where S: Send, B: Send,

impl<S, B> Sync for WalkTreePostfix<S, B> where S: Sync, B: Sync,

impl<S, B> Unpin for WalkTreePostfix<S, B> where S: Unpin, B: Unpin,

impl<S, B> UnsafeUnpin for WalkTreePostfix<S, B> where S: UnsafeUnpin, B: UnsafeUnpin,

impl<S, B> UnwindSafe for WalkTreePostfix<S, B> where S: UnwindSafe, B: UnwindSafe,

Blanket Implementations

impl<T> Any for WalkTreePostfix<S, B> where T: 'static + ?Sized,

fn type_id(&self) -> TypeId

impl<T> Borrow<T> for WalkTreePostfix<S, B> where T: ?Sized,

fn borrow(&self) -> &T

impl<T> BorrowMut<T> for WalkTreePostfix<S, B> where T: ?Sized,

fn borrow_mut(&mut self) -> &mut T

impl<T> From<T> for WalkTreePostfix<S, B>

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> IntoEither for WalkTreePostfix<S, B>

impl<T> IntoParallelIterator for WalkTreePostfix<S, B> where T: ParallelIterator,

type Iter = T;
type Item = <T as ParallelIterator>::Item;
fn into_par_iter(self) -> T

impl<T> Pointable for WalkTreePostfix<S, B>

const ALIGN: usize = _;
type Init = T;
unsafe fn init(init: <T as Pointable>::Init) -> usize
unsafe fn deref<'a>(ptr: usize) -> &'a T
unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T
unsafe fn drop(ptr: usize)

impl<T, U> Into<U> for WalkTreePostfix<S, B> where U: From<T>,

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom<U> for WalkTreePostfix<S, B> where U: Into<T>,

type Error = never;
fn try_from(value: U) -> Result<T, never>

impl<T, U> TryInto<U> for WalkTreePostfix<S, B> where U: TryFrom<T>,

type Error = <U as TryFrom<T>>::Error;
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>