pub struct ValueDateData {
pub day: u8,
pub month: u8,
pub year: i32,
}Fields§
§day: u8§month: u8§year: i32Trait Implementations§
Source§impl Clone for ValueDateData
impl Clone for ValueDateData
Source§fn clone(&self) -> ValueDateData
fn clone(&self) -> ValueDateData
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 moreSource§impl Debug for ValueDateData
impl Debug for ValueDateData
Source§impl Default for ValueDateData
impl Default for ValueDateData
Source§impl Display for ValueDateData
impl Display for ValueDateData
Source§impl From<ValueDateData> for Value
Convenience method for creating ValueDate values.
impl From<ValueDateData> for Value
Convenience method for creating ValueDate values.
Source§fn from(data: ValueDateData) -> Self
fn from(data: ValueDateData) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ValueDateData
impl PartialEq for ValueDateData
Source§fn eq(&self, other: &ValueDateData) -> bool
fn eq(&self, other: &ValueDateData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<&str> for ValueDateData
impl TryFrom<&str> for ValueDateData
impl Eq for ValueDateData
impl StructuralPartialEq for ValueDateData
Auto Trait Implementations§
impl Freeze for ValueDateData
impl RefUnwindSafe for ValueDateData
impl Send for ValueDateData
impl Sync for ValueDateData
impl Unpin for ValueDateData
impl UnsafeUnpin for ValueDateData
impl UnwindSafe for ValueDateData
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