Struct flipperzero_sys::FuriHalRtcDateTime
source · #[repr(C)]pub struct FuriHalRtcDateTime {
pub hour: u8,
pub minute: u8,
pub second: u8,
pub day: u8,
pub month: u8,
pub year: u16,
pub weekday: u8,
}Fields§
§hour: u8Hour in 24H format: 0-23
minute: u8Minute: 0-59
second: u8Second: 0-59
day: u8Current day: 1-31
month: u8Current month: 1-12
year: u16Current year: 2000-2099
weekday: u8Current weekday: 1-7
Trait Implementations§
source§impl Clone for FuriHalRtcDateTime
impl Clone for FuriHalRtcDateTime
source§fn clone(&self) -> FuriHalRtcDateTime
fn clone(&self) -> FuriHalRtcDateTime
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more