pub struct InputPlugin;Expand description
The input plugin itself
Trait Implementations§
Source§impl Plugin for InputPlugin
impl Plugin for InputPlugin
Source§fn build(
&mut self,
ctx: &mut PluginBuildContext<'_>,
) -> Result<(), Box<dyn Error>>
fn build( &mut self, ctx: &mut PluginBuildContext<'_>, ) -> Result<(), Box<dyn Error>>
Prepare/initialize the plugin, return a result of the initialization. Read more
Auto Trait Implementations§
impl Freeze for InputPlugin
impl RefUnwindSafe for InputPlugin
impl Send for InputPlugin
impl Sync for InputPlugin
impl Unpin for InputPlugin
impl UnsafeUnpin for InputPlugin
impl UnwindSafe for InputPlugin
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more