Struct peresil::Progress [] [src]

pub struct Progress<'a, T> {
    pub point: Point<'a>,
    pub data: T,
}

Fields

point: Point<'a> data: T

Methods

impl<'a, T> Progress<'a, T>
[src]

fn to_tuple(self) -> (T, Point<'a>)

fn map<F, B>(self, f: F) -> Progress<'a, B> where F: FnOnce(T) -> B