//! Power control functionality for RTC devices.
usecrate::rtc::Rtc;/// This trait extends [`Rtc`] with methods to start and halt the RTC clock.
pubtraitRtcPowerControl: Rtc {/// Start or resume the RTC oscillator so that timekeeping can continue.
fnstart_clock(&mutself)->Result<(), Self::Error>;/// Halt the RTC oscillator, pausing timekeeping until restarted.
fnhalt_clock(&mutself)->Result<(), Self::Error>;}