pub struct DateReply {
pub year: i32,
pub month: i32,
pub day: i32,
pub hour: i32,
pub minute: i32,
pub second: i32,
pub nanosecond: i32,
pub human: Option<String>,
pub string: String,
pub rfc3339: String,
}Fields§
§year: i32§month: i32§day: i32§hour: i32§minute: i32§second: i32§nanosecond: i32§human: Option<String>chrono-humanize output, if enabled.
string: String§rfc3339: StringImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DateReply
impl RefUnwindSafe for DateReply
impl Send for DateReply
impl Sync for DateReply
impl Unpin for DateReply
impl UnsafeUnpin for DateReply
impl UnwindSafe for DateReply
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