pub struct DurationFields {
pub years: f64,
pub months: f64,
pub weeks: f64,
pub days: f64,
pub hours: f64,
pub minutes: f64,
pub seconds: f64,
pub milliseconds: f64,
pub microseconds: f64,
pub nanoseconds: f64,
}Expand description
Raw, not-yet-normalized inputs to duration({...})/duration('...')
construction – one f64 per Cypher map key (0.0 when absent), kept
as a struct (not 10 positional f64 args) so call sites read as
years: 12.0, ..Default::default() rather than an unlabeled tuple.
Fields§
§years: f64§months: f64§weeks: f64§days: f64§hours: f64§minutes: f64§seconds: f64§milliseconds: f64§microseconds: f64§nanoseconds: f64Trait Implementations§
Source§impl Clone for DurationFields
impl Clone for DurationFields
Source§fn clone(&self) -> DurationFields
fn clone(&self) -> DurationFields
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DurationFields
Source§impl Default for DurationFields
impl Default for DurationFields
Source§fn default() -> DurationFields
fn default() -> DurationFields
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DurationFields
impl RefUnwindSafe for DurationFields
impl Send for DurationFields
impl Sync for DurationFields
impl Unpin for DurationFields
impl UnsafeUnpin for DurationFields
impl UnwindSafe for DurationFields
Blanket Implementations§
Source§impl<T> AnyExt for T
impl<T> AnyExt for T
Source§fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
fn downcast_ref<T>(this: &Self) -> Option<&T>where
T: Any,
Attempts to downcast this to
T behind referenceSource§fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
fn downcast_mut<T>(this: &mut Self) -> Option<&mut T>where
T: Any,
Attempts to downcast this to
T behind mutable referenceSource§fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
fn downcast_rc<T>(this: Rc<Self>) -> Result<Rc<T>, Rc<Self>>where
T: Any,
Attempts to downcast this to
T behind Rc pointerSource§fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
fn downcast_arc<T>(this: Arc<Self>) -> Result<Arc<T>, Arc<Self>>where
T: Any,
Attempts to downcast this to
T behind Arc pointerSource§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