pub enum InputAppEvent {
InputAppEvent(InputAppEvent),
}Expand description
Variants§
InputAppEvent(InputAppEvent)
Trait Implementations§
Source§impl Clone for InputAppEvent
impl Clone for InputAppEvent
Source§fn clone(&self) -> InputAppEvent
fn clone(&self) -> InputAppEvent
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InputAppEvent
impl Debug for InputAppEvent
Source§impl Deserializable for InputAppEvent
impl Deserializable for InputAppEvent
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<InputAppEvent> for InputAppEvent
impl From<InputAppEvent> for InputAppEvent
Source§fn from(x: InputAppEvent) -> Self
fn from(x: InputAppEvent) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InputAppEvent
impl PartialEq for InputAppEvent
Source§impl Serializable for InputAppEvent
impl Serializable for InputAppEvent
Source§impl TryFrom<InputAppEvent> for InputAppEvent
impl TryFrom<InputAppEvent> for InputAppEvent
Source§type Error = InputAppEvent
type Error = InputAppEvent
The type returned in the event of a conversion error.
impl StructuralPartialEq for InputAppEvent
Auto Trait Implementations§
impl Freeze for InputAppEvent
impl RefUnwindSafe for InputAppEvent
impl Send for InputAppEvent
impl Sync for InputAppEvent
impl Unpin for InputAppEvent
impl UnsafeUnpin for InputAppEvent
impl UnwindSafe for InputAppEvent
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