pub trait TimelineObject: IntoIterator<Item = Result<EcsBuilder>> {
    // Provided methods
    fn into_values(self) -> Box<dyn Iterator<Item = Value>>
       where Self: Sized,
             <Self as IntoIterator>::IntoIter: 'static { ... }
    fn into_tuples(self) -> Box<dyn Iterator<Item = (Timestamp, Value)>>
       where Self: Sized,
             <Self as IntoIterator>::IntoIter: 'static { ... }
}

Provided Methods§

source

fn into_values(self) -> Box<dyn Iterator<Item = Value>>where Self: Sized, <Self as IntoIterator>::IntoIter: 'static,

source

fn into_tuples(self) -> Box<dyn Iterator<Item = (Timestamp, Value)>>where Self: Sized, <Self as IntoIterator>::IntoIter: 'static,

Implementors§