Struct html_sys::text::KeyboardInput
source · #[non_exhaustive]pub struct KeyboardInput {
pub data_map: DataMap,
/* private fields */
}
Expand description
The HTML <kbd>
element
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.data_map: DataMap
Trait Implementations§
source§impl Clone for KeyboardInput
impl Clone for KeyboardInput
source§fn clone(&self) -> KeyboardInput
fn clone(&self) -> KeyboardInput
Returns a copy 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 KeyboardInput
impl Debug for KeyboardInput
source§impl Default for KeyboardInput
impl Default for KeyboardInput
source§fn default() -> KeyboardInput
fn default() -> KeyboardInput
Returns the “default value” for a type. Read more
source§impl Deref for KeyboardInput
impl Deref for KeyboardInput
source§impl DerefMut for KeyboardInput
impl DerefMut for KeyboardInput
source§impl Display for KeyboardInput
impl Display for KeyboardInput
source§impl PartialEq<KeyboardInput> for KeyboardInput
impl PartialEq<KeyboardInput> for KeyboardInput
source§fn eq(&self, other: &KeyboardInput) -> bool
fn eq(&self, other: &KeyboardInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RenderElement for KeyboardInput
impl RenderElement for KeyboardInput
impl StructuralPartialEq for KeyboardInput
Auto Trait Implementations§
impl RefUnwindSafe for KeyboardInput
impl Send for KeyboardInput
impl Sync for KeyboardInput
impl Unpin for KeyboardInput
impl UnwindSafe for KeyboardInput
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