pub trait Solar: Converter {
// Required methods
fn to_date(&mut self, zone_in_unix: bool);
fn to_presentation(&mut self, zone_in_unix: bool);
}Required Methods§
fn to_date(&mut self, zone_in_unix: bool)
fn to_presentation(&mut self, zone_in_unix: bool)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".