TemporalZ

days

Returns the number of days in the duration.

See: Temporal.Duration.days

Parameters

#
self:Duration
Duration

Source

Implementation

#
pub fn days(self: Duration) i64 {
    return abi.c.temporal_rs_Duration_days(self._inner);
}