pub enum KeyValue {
number(IntWrapper),
qcode(QKeyCodeWrapper),
}Variants
number(IntWrapper)
qcode(QKeyCodeWrapper)
Implementations
sourceimpl KeyValue
impl KeyValue
pub fn type_(&self) -> KeyValueKind
Trait Implementations
sourceimpl<'de> Deserialize<'de> for KeyValue
impl<'de> Deserialize<'de> for KeyValue
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<IntWrapper> for KeyValue
impl From<IntWrapper> for KeyValue
sourcefn from(val: IntWrapper) -> Self
fn from(val: IntWrapper) -> Self
Converts to this type from the input type.
sourceimpl From<QKeyCodeWrapper> for KeyValue
impl From<QKeyCodeWrapper> for KeyValue
sourcefn from(val: QKeyCodeWrapper) -> Self
fn from(val: QKeyCodeWrapper) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for KeyValue
impl Send for KeyValue
impl Sync for KeyValue
impl Unpin for KeyValue
impl UnwindSafe for KeyValue
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more