pub enum UIKeyCapRendering {
UnixLong,
Emacs,
AppleSymbols,
WindowsLong,
WindowsSymbols,
}
Variants§
UnixLong
Super, Meta, Ctrl, Shift
Emacs
Super, M, C, S
AppleSymbols
Apple macOS style symbols
WindowsLong
Win, Alt, Ctrl, Shift
WindowsSymbols
Like WindowsLong, but using a logo for the Win key
Trait Implementations§
source§impl Clone for UIKeyCapRendering
impl Clone for UIKeyCapRendering
source§fn clone(&self) -> UIKeyCapRendering
fn clone(&self) -> UIKeyCapRendering
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 UIKeyCapRendering
impl Debug for UIKeyCapRendering
source§impl Default for UIKeyCapRendering
impl Default for UIKeyCapRendering
source§impl FromDynamic for UIKeyCapRendering
impl FromDynamic for UIKeyCapRendering
fn from_dynamic( value: &Value, options: FromDynamicOptions ) -> Result<Self, Error>
source§impl PartialEq for UIKeyCapRendering
impl PartialEq for UIKeyCapRendering
source§fn eq(&self, other: &UIKeyCapRendering) -> bool
fn eq(&self, other: &UIKeyCapRendering) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl ToDynamic for UIKeyCapRendering
impl ToDynamic for UIKeyCapRendering
fn to_dynamic(&self) -> Value
impl Copy for UIKeyCapRendering
impl Eq for UIKeyCapRendering
impl StructuralEq for UIKeyCapRendering
impl StructuralPartialEq for UIKeyCapRendering
Auto Trait Implementations§
impl RefUnwindSafe for UIKeyCapRendering
impl Send for UIKeyCapRendering
impl Sync for UIKeyCapRendering
impl Unpin for UIKeyCapRendering
impl UnwindSafe for UIKeyCapRendering
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