pub trait PolarsRound {
    // Required method
    fn round(
        &self,
        every: Duration,
        offset: Duration,
        tz: Option<&Tz>
    ) -> PolarsResult<Self>
       where Self: Sized;
}

Required Methods§

source

fn round( &self, every: Duration, offset: Duration, tz: Option<&Tz> ) -> PolarsResult<Self>where Self: Sized,

Implementors§