#[repr(C)]pub struct UA_InterruptManager {
pub eventSource: UA_EventSource,
pub registerInterrupt: Option<unsafe extern "C" fn(im: *mut UA_InterruptManager, interruptHandle: usize, params: *const UA_KeyValueMap, callback: UA_InterruptCallback, interruptContext: *mut c_void) -> UA_StatusCode>,
pub deregisterInterrupt: Option<unsafe extern "C" fn(im: *mut UA_InterruptManager, interruptHandle: usize)>,
}Fields§
§eventSource: UA_EventSource§registerInterrupt: Option<unsafe extern "C" fn(im: *mut UA_InterruptManager, interruptHandle: usize, params: *const UA_KeyValueMap, callback: UA_InterruptCallback, interruptContext: *mut c_void) -> UA_StatusCode>§deregisterInterrupt: Option<unsafe extern "C" fn(im: *mut UA_InterruptManager, interruptHandle: usize)>Trait Implementations§
Source§impl Clone for UA_InterruptManager
impl Clone for UA_InterruptManager
Source§fn clone(&self) -> UA_InterruptManager
fn clone(&self) -> UA_InterruptManager
Returns a duplicate 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 moreSource§impl Debug for UA_InterruptManager
impl Debug for UA_InterruptManager
impl Copy for UA_InterruptManager
Auto Trait Implementations§
impl Freeze for UA_InterruptManager
impl RefUnwindSafe for UA_InterruptManager
impl !Send for UA_InterruptManager
impl !Sync for UA_InterruptManager
impl Unpin for UA_InterruptManager
impl UnwindSafe for UA_InterruptManager
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