pub trait CFEncoder<T> {
// Required method
fn encode_cf(&self, units: &str, calendar: Calendar) -> Result<T, Error>;
}Expand description
This trait represents a CFEncoder. A CFEncoder is responsible for encoding CFDatetime into a specific format.