pub struct InputBundle<T: BindingTypes> { /* private fields */ }Expand description
Bundle for adding the InputHandler.
This also adds the Winit EventHandler and the InputEvent<T> EventHandler
where T::Action is the type for Actions you have assigned here.
§Type parameters
T: The type used to identify input binding types.
String is appropriate for either of these if you don’t know what to use.
§Errors
No errors returned from this bundle.
Implementations§
Source§impl<T: BindingTypes> InputBundle<T>
impl<T: BindingTypes> InputBundle<T>
Sourcepub fn with_bindings(self, bindings: Bindings<T>) -> Self
pub fn with_bindings(self, bindings: Bindings<T>) -> Self
Use the provided bindings with the InputHandler
Sourcepub fn with_bindings_from_file<P: AsRef<Path>>(
self,
file: P,
) -> Result<Self, BindingsFileError<T>>
pub fn with_bindings_from_file<P: AsRef<Path>>( self, file: P, ) -> Result<Self, BindingsFileError<T>>
Load bindings from file
Trait Implementations§
Source§impl<T: Debug + BindingTypes> Debug for InputBundle<T>
impl<T: Debug + BindingTypes> Debug for InputBundle<T>
Source§impl<T: BindingTypes> Default for InputBundle<T>
impl<T: BindingTypes> Default for InputBundle<T>
Source§impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for InputBundle<T>
impl<'a, 'b, T: BindingTypes> SystemBundle<'a, 'b> for InputBundle<T>
Auto Trait Implementations§
impl<T> Freeze for InputBundle<T>
impl<T> RefUnwindSafe for InputBundle<T>
impl<T> Send for InputBundle<T>
impl<T> Sync for InputBundle<T>
impl<T> Unpin for InputBundle<T>
impl<T> UnsafeUnpin for InputBundle<T>
impl<T> UnwindSafe for InputBundle<T>
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> SetParameter for T
impl<T> SetParameter for T
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.Source§impl<T> TryDefault for Twhere
T: Default,
impl<T> TryDefault for Twhere
T: Default,
Source§fn try_default() -> Result<T, String>
fn try_default() -> Result<T, String>
Tries to create the default.
Source§fn unwrap_default() -> Self
fn unwrap_default() -> Self
Calls
try_default and panics on an error case.