pub struct InputInfo {
pub input_device_state: InputState,
}
Fields§
§input_device_state: InputState
Trait Implementations§
Source§impl DeviceStorageConvertible for InputInfo
impl DeviceStorageConvertible for InputInfo
Source§type Storable = InputInfoSources
type Storable = InputInfoSources
The type that will be used for storing the data.
Source§fn get_storable(&self) -> Cow<'_, Self::Storable>
fn get_storable(&self) -> Cow<'_, Self::Storable>
Convert
self
into its storable version.Source§impl From<InputInfo> for SettingInfo
impl From<InputInfo> for SettingInfo
Source§fn from(info: InputInfo) -> SettingInfo
fn from(info: InputInfo) -> SettingInfo
Converts to this type from the input type.
Source§impl From<InputInfoSources> for InputInfo
impl From<InputInfoSources> for InputInfo
Source§fn from(info: InputInfoSources) -> InputInfo
fn from(info: InputInfoSources) -> InputInfo
Converts to this type from the input type.
Source§impl TryFrom<SettingInfo> for InputInfo
impl TryFrom<SettingInfo> for InputInfo
impl StructuralPartialEq for InputInfo
Auto Trait Implementations§
impl Freeze for InputInfo
impl RefUnwindSafe for InputInfo
impl Send for InputInfo
impl Sync for InputInfo
impl Unpin for InputInfo
impl UnwindSafe for InputInfo
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous1, D> for Twhere
D: ResourceDialect,
Source§impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
impl<T, D> Encode<Ambiguous2, D> for Twhere
D: ResourceDialect,
§impl<T> IntoAny for T
impl<T> IntoAny for T
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