pub struct DurationArgs {
pub weeks: Expr,
pub days: Expr,
pub hours: Expr,
pub minutes: Expr,
pub seconds: Expr,
pub milliseconds: Expr,
pub microseconds: Expr,
pub nanoseconds: Expr,
pub time_unit: TimeUnit,
}
Available on crate feature
temporal
only.Expand description
Arguments used by duration
in order to produce an Expr
of Duration
To construct a DurationArgs
, use struct literal syntax with ..Default::default()
to leave unspecified fields at
their default value of lit(0)
, as demonstrated below.
let args = DurationArgs {
days: lit(5),
hours: col("num_hours"),
minutes: col("num_minutes"),
..Default::default() // other fields are lit(0)
};
If you prefer builder syntax, with_*
methods are also available.
let args = DurationArgs::new().with_weeks(lit(42)).with_hours(lit(84));
Fields§
§weeks: Expr
§days: Expr
§hours: Expr
§minutes: Expr
§seconds: Expr
§milliseconds: Expr
§microseconds: Expr
§nanoseconds: Expr
§time_unit: TimeUnit
Implementations§
Source§impl DurationArgs
impl DurationArgs
Sourcepub fn new() -> Self
pub fn new() -> Self
Create a new DurationArgs
with all fields set to lit(0)
. Use the with_*
methods to set the fields.
Sourcepub fn with_hms(self, hours: Expr, minutes: Expr, seconds: Expr) -> Self
pub fn with_hms(self, hours: Expr, minutes: Expr, seconds: Expr) -> Self
Set hours
, minutes
, and seconds
Equivalent to:
ⓘ
self.with_hours(hours)
.with_minutes(minutes)
.with_seconds(seconds)
Sourcepub fn with_fractional_seconds(
self,
milliseconds: Expr,
microseconds: Expr,
nanoseconds: Expr,
) -> Self
pub fn with_fractional_seconds( self, milliseconds: Expr, microseconds: Expr, nanoseconds: Expr, ) -> Self
Set milliseconds
, microseconds
, and nanoseconds
Equivalent to
ⓘ
self.with_milliseconds(milliseconds)
.with_microseconds(microseconds)
.with_nanoseconds(nanoseconds)
Sourcepub fn with_weeks(self, n: Expr) -> Self
pub fn with_weeks(self, n: Expr) -> Self
Set the weeks
Sourcepub fn with_hours(self, n: Expr) -> Self
pub fn with_hours(self, n: Expr) -> Self
Set the hours
Sourcepub fn with_minutes(self, n: Expr) -> Self
pub fn with_minutes(self, n: Expr) -> Self
Set the minutes
Sourcepub fn with_seconds(self, n: Expr) -> Self
pub fn with_seconds(self, n: Expr) -> Self
Set the seconds
Sourcepub fn with_milliseconds(self, n: Expr) -> Self
pub fn with_milliseconds(self, n: Expr) -> Self
Set the milliseconds
Sourcepub fn with_microseconds(self, n: Expr) -> Self
pub fn with_microseconds(self, n: Expr) -> Self
Set the microseconds
Sourcepub fn with_nanoseconds(self, n: Expr) -> Self
pub fn with_nanoseconds(self, n: Expr) -> Self
Set the nanoseconds
Trait Implementations§
Source§impl Clone for DurationArgs
impl Clone for DurationArgs
Source§fn clone(&self) -> DurationArgs
fn clone(&self) -> DurationArgs
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DurationArgs
impl Debug for DurationArgs
Auto Trait Implementations§
impl !Freeze for DurationArgs
impl !RefUnwindSafe for DurationArgs
impl Send for DurationArgs
impl Sync for DurationArgs
impl Unpin for DurationArgs
impl !UnwindSafe for DurationArgs
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more