pub struct DateFromParts {
pub year: Option<Box<Expression>>,
pub month: Option<Box<Expression>>,
pub day: Option<Box<Expression>>,
pub allow_overflow: Option<Box<Expression>>,
}Expand description
DateFromParts
Fields§
§year: Option<Box<Expression>>§month: Option<Box<Expression>>§day: Option<Box<Expression>>§allow_overflow: Option<Box<Expression>>Trait Implementations§
Source§impl Clone for DateFromParts
impl Clone for DateFromParts
Source§fn clone(&self) -> DateFromParts
fn clone(&self) -> DateFromParts
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 DateFromParts
impl Debug for DateFromParts
Source§impl<'de> Deserialize<'de> for DateFromParts
impl<'de> Deserialize<'de> for DateFromParts
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 DateFromParts
impl PartialEq for DateFromParts
Source§impl Serialize for DateFromParts
impl Serialize for DateFromParts
impl StructuralPartialEq for DateFromParts
Auto Trait Implementations§
impl Freeze for DateFromParts
impl RefUnwindSafe for DateFromParts
impl Send for DateFromParts
impl Sync for DateFromParts
impl Unpin for DateFromParts
impl UnwindSafe for DateFromParts
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