pub trait PolarsRound {
// Required method
fn round(
&self,
every: &ChunkedArray<StringType>,
tz: Option<&Tz>,
) -> Result<Self, PolarsError>
where Self: Sized;
}
Available on crate feature
temporal
only.