Struct lodepng::ffi::Time [] [src]

pub struct Time {
    pub year: c_uint,
    pub month: c_uint,
    pub day: c_uint,
    pub hour: c_uint,
    pub minute: c_uint,
    pub second: c_uint,
}

The information of a Time chunk in PNG

Fields

year: c_uint month: c_uint day: c_uint hour: c_uint minute: c_uint second: c_uint

Trait Implementations

impl Debug for Time
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Time
[src]

fn clone(&self) -> Time

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Copy for Time
[src]