#[repr(C)]pub struct RTC_HandleTypeDef {
pub Instance: *mut RTC_TypeDef,
pub Init: RTC_InitTypeDef,
pub DateToUpdate: RTC_DateTypeDef,
pub Lock: HAL_LockTypeDef,
pub State: HAL_RTCStateTypeDef,
}Fields§
§Instance: *mut RTC_TypeDef< Register base address
Init: RTC_InitTypeDef< RTC required parameters
DateToUpdate: RTC_DateTypeDef< Current date set by user and updated automatically
Lock: HAL_LockTypeDef< RTC locking object
State: HAL_RTCStateTypeDef< Time communication state
Trait Implementations§
Source§impl Clone for RTC_HandleTypeDef
impl Clone for RTC_HandleTypeDef
Source§fn clone(&self) -> RTC_HandleTypeDef
fn clone(&self) -> RTC_HandleTypeDef
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RTC_HandleTypeDef
Auto Trait Implementations§
impl !Send for RTC_HandleTypeDef
impl !Sync for RTC_HandleTypeDef
impl Freeze for RTC_HandleTypeDef
impl RefUnwindSafe for RTC_HandleTypeDef
impl Unpin for RTC_HandleTypeDef
impl UnsafeUnpin for RTC_HandleTypeDef
impl UnwindSafe for RTC_HandleTypeDef
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more