CompiledData

Trait CompiledData 

Source
pub trait CompiledData {
    // Required method
    fn parse(input: Vec<u8>) -> Result<TimeZone>;

    // Provided method
    fn from_file<P: AsRef<Path>>(path: P) -> Result<TimeZone> { ... }
}

Required Methods§

Source

fn parse(input: Vec<u8>) -> Result<TimeZone>

Provided Methods§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl CompiledData for TimeZone

Implementors§