#[repr(C)]
pub union BusEventU {
pub noop: u8,
pub exit: BusEventExit,
pub call: BusEventCall,
pub result: BusEventResult,
pub fault: BusEventFault,
pub close: BusEventClose,
}Fields
noop: u8exit: BusEventExitcall: BusEventCallresult: BusEventResultfault: BusEventFaultclose: BusEventCloseTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BusEventU
impl Send for BusEventU
impl Sync for BusEventU
impl Unpin for BusEventU
impl UnwindSafe for BusEventU
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more