pub struct WatchdogServices { /* private fields */ }
Implementations§
Source§impl WatchdogServices
impl WatchdogServices
pub async fn new( debug_id: impl Into<String>, vmtime: VmTimeAccess, platform: Box<dyn WatchdogPlatform>, is_restoring: bool, ) -> WatchdogServices
pub fn reset(&mut self)
pub fn read(&mut self, reg: Register) -> Result<u32, WatchdogServiceError>
pub fn write( &mut self, reg: Register, val: u32, ) -> Result<(), WatchdogServiceError>
pub fn poll(&mut self, cx: &mut Context<'_>)
Trait Implementations§
Source§impl Inspect for WatchdogServices
impl Inspect for WatchdogServices
Source§impl SaveRestore for WatchdogServices
impl SaveRestore for WatchdogServices
Auto Trait Implementations§
impl Freeze for WatchdogServices
impl !RefUnwindSafe for WatchdogServices
impl Send for WatchdogServices
impl !Sync for WatchdogServices
impl Unpin for WatchdogServices
impl !UnwindSafe for WatchdogServices
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