pub struct TimeFromParts {
pub hour: Option<Box<Expression>>,
pub min: Option<Box<Expression>>,
pub sec: Option<Box<Expression>>,
pub nano: Option<Box<Expression>>,
pub fractions: Option<Box<Expression>>,
pub precision: Option<i64>,
}Expand description
TimeFromParts
Fields§
§hour: Option<Box<Expression>>§min: Option<Box<Expression>>§sec: Option<Box<Expression>>§nano: Option<Box<Expression>>§fractions: Option<Box<Expression>>§precision: Option<i64>Trait Implementations§
Source§impl Clone for TimeFromParts
impl Clone for TimeFromParts
Source§fn clone(&self) -> TimeFromParts
fn clone(&self) -> TimeFromParts
Returns a duplicate 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 TimeFromParts
impl Debug for TimeFromParts
Source§impl<'de> Deserialize<'de> for TimeFromParts
impl<'de> Deserialize<'de> for TimeFromParts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TimeFromParts
impl PartialEq for TimeFromParts
Source§impl Serialize for TimeFromParts
impl Serialize for TimeFromParts
impl StructuralPartialEq for TimeFromParts
Auto Trait Implementations§
impl Freeze for TimeFromParts
impl RefUnwindSafe for TimeFromParts
impl Send for TimeFromParts
impl Sync for TimeFromParts
impl Unpin for TimeFromParts
impl UnwindSafe for TimeFromParts
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