pub enum Output<UserData, SE, TW> {
Ext(ExtOut<UserData, SE>),
Event(LogicEvent<UserData, SE, TW>),
OnResourceEmpty,
}Variants§
Trait Implementations§
Source§impl<UserData, SE, TW> From<LogicEvent<UserData, SE, TW>> for Output<UserData, SE, TW>
impl<UserData, SE, TW> From<LogicEvent<UserData, SE, TW>> for Output<UserData, SE, TW>
Source§fn from(val: LogicEvent<UserData, SE, TW>) -> Self
fn from(val: LogicEvent<UserData, SE, TW>) -> Self
Converts to this type from the input type.
Source§impl<UserData, SC, SE, TC, TW> TaskSwitcherChild<Output<UserData, SE, TW>> for ControllerPlane<UserData, SC, SE, TC, TW>
impl<UserData, SC, SE, TC, TW> TaskSwitcherChild<Output<UserData, SE, TW>> for ControllerPlane<UserData, SC, SE, TC, TW>
Auto Trait Implementations§
impl<UserData, SE, TW> Freeze for Output<UserData, SE, TW>
impl<UserData, SE, TW> !RefUnwindSafe for Output<UserData, SE, TW>
impl<UserData, SE, TW> Send for Output<UserData, SE, TW>
impl<UserData, SE, TW> Sync for Output<UserData, SE, TW>
impl<UserData, SE, TW> Unpin for Output<UserData, SE, TW>
impl<UserData, SE, TW> !UnwindSafe for Output<UserData, SE, TW>
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