pub enum Input<UserData, SC, SE, TC> {
Ext(ExtIn<UserData, SC>),
Control(LogicControl<UserData, SC, SE, TC>),
}Variants§
Ext(ExtIn<UserData, SC>)
Control(LogicControl<UserData, SC, SE, TC>)
Trait Implementations§
Source§impl<UserData, SC, SE, TC> From<LogicControl<UserData, SC, SE, TC>> for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> From<LogicControl<UserData, SC, SE, TC>> for Input<UserData, SC, SE, TC>
Source§fn from(val: LogicControl<UserData, SC, SE, TC>) -> Self
fn from(val: LogicControl<UserData, SC, SE, TC>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl<UserData, SC, SE, TC> Freeze for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> RefUnwindSafe for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> Send for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> Sync for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> Unpin for Input<UserData, SC, SE, TC>
impl<UserData, SC, SE, TC> UnwindSafe for Input<UserData, SC, SE, TC>
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