Trait msdos_time::TmMsDosExt [] [src]

pub trait TmMsDosExt: Sized {
    fn to_msdos(&self) -> Result<MsDosDateTimeError>;
    fn from_msdos(MsDosDateTime) -> Result<Self, Error>;
}

Trait to convert a time representation to and from a MsDosDateTime

Required Methods

fn to_msdos(&self) -> Result<MsDosDateTimeError>

Convert a value to MsDosDateTime

fn from_msdos(MsDosDateTime) -> Result<Self, Error>

Construct a value from an MsDosDateTime

Implementors