Struct DurationArgs
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,
}
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§
§impl DurationArgs
impl DurationArgs
pub fn new() -> DurationArgs
pub fn new() -> DurationArgs
Create a new DurationArgs
with all fields set to lit(0)
. Use the with_*
methods to set the fields.
pub fn with_hms(self, hours: Expr, minutes: Expr, seconds: Expr) -> DurationArgs
pub fn with_hms(self, hours: Expr, minutes: Expr, seconds: Expr) -> DurationArgs
Set hours
, minutes
, and seconds
Equivalent to:
ⓘ
self.with_hours(hours)
.with_minutes(minutes)
.with_seconds(seconds)
pub fn with_fractional_seconds(
self,
milliseconds: Expr,
microseconds: Expr,
nanoseconds: Expr,
) -> DurationArgs
pub fn with_fractional_seconds( self, milliseconds: Expr, microseconds: Expr, nanoseconds: Expr, ) -> DurationArgs
Set milliseconds
, microseconds
, and nanoseconds
Equivalent to
ⓘ
self.with_milliseconds(milliseconds)
.with_microseconds(microseconds)
.with_nanoseconds(nanoseconds)
pub fn with_weeks(self, n: Expr) -> DurationArgs
pub fn with_weeks(self, n: Expr) -> DurationArgs
Set the weeks
pub fn with_days(self, n: Expr) -> DurationArgs
pub fn with_days(self, n: Expr) -> DurationArgs
Set the days
pub fn with_hours(self, n: Expr) -> DurationArgs
pub fn with_hours(self, n: Expr) -> DurationArgs
Set the hours
pub fn with_minutes(self, n: Expr) -> DurationArgs
pub fn with_minutes(self, n: Expr) -> DurationArgs
Set the minutes
pub fn with_seconds(self, n: Expr) -> DurationArgs
pub fn with_seconds(self, n: Expr) -> DurationArgs
Set the seconds
pub fn with_milliseconds(self, n: Expr) -> DurationArgs
pub fn with_milliseconds(self, n: Expr) -> DurationArgs
Set the milliseconds
pub fn with_microseconds(self, n: Expr) -> DurationArgs
pub fn with_microseconds(self, n: Expr) -> DurationArgs
Set the microseconds
pub fn with_nanoseconds(self, n: Expr) -> DurationArgs
pub fn with_nanoseconds(self, n: Expr) -> DurationArgs
Set the nanoseconds
Trait Implementations§
§impl Clone for DurationArgs
impl Clone for DurationArgs
§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 more§impl Debug for DurationArgs
impl Debug for DurationArgs
§impl Default for DurationArgs
impl Default for DurationArgs
§fn default() -> DurationArgs
fn default() -> DurationArgs
Returns the “default value” for a type. Read more
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
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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