pub trait SqlInterfaceMidnightCalculatorTrait {
// Required method
fn get_duration_until_midnight(&mut self) -> Result<i64, SqlInterfaceError>;
}Expand description
Trait for calculation the time interval until midnight in seconds. This trait allows running the main control with a mock implementation for testing.