#[repr(C)]pub struct aws_date_time {
pub timestamp: time_t,
pub milliseconds: u16,
pub tz: [c_char; 6],
pub gmt_time: tm,
pub local_time: tm,
pub utc_assumed: bool,
}
Fields
timestamp: time_t
milliseconds: u16
tz: [c_char; 6]
gmt_time: tm
local_time: tm
utc_assumed: bool
Trait Implementations
sourceimpl Clone for aws_date_time
impl Clone for aws_date_time
sourcefn clone(&self) -> aws_date_time
fn clone(&self) -> aws_date_time
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_date_time
impl Debug for aws_date_time
sourceimpl Default for aws_date_time
impl Default for aws_date_time
sourceimpl PartialEq<aws_date_time> for aws_date_time
impl PartialEq<aws_date_time> for aws_date_time
sourcefn eq(&self, other: &aws_date_time) -> bool
fn eq(&self, other: &aws_date_time) -> bool
impl Copy for aws_date_time
impl Eq for aws_date_time
impl StructuralEq for aws_date_time
impl StructuralPartialEq for aws_date_time
Auto Trait Implementations
impl RefUnwindSafe for aws_date_time
impl !Send for aws_date_time
impl !Sync for aws_date_time
impl Unpin for aws_date_time
impl UnwindSafe for aws_date_time
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more