Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
TransformedIterator in datafusion_common::tree_node - Rust
[go: Go Back, main page]

pub trait TransformedIterator: Iterator {
    // Required method
    fn map_until_stop_and_collect<F: FnMut(Self::Item) -> Result<Transformed<Self::Item>>>(
        self,
        f: F
    ) -> Result<Transformed<Vec<Self::Item>>>;
}
Expand description

Transformation helper to process tree nodes that are siblings.

Required Methods§

source

fn map_until_stop_and_collect<F: FnMut(Self::Item) -> Result<Transformed<Self::Item>>>( self, f: F ) -> Result<Transformed<Vec<Self::Item>>>

Object Safety§

This trait is not object safe.

Implementors§