pub struct KeysConfig {
pub general: KeysGeneral,
pub search: KeysSearch,
pub performing_replacement: KeysPerformingReplacement,
pub results: KeysResults,
}Fields§
§general: KeysGeneralCommands available on all screens
search: KeysSearchCommands available on the search screen
performing_replacement: KeysPerformingReplacementCommands available on the replacement-in-progress screen
results: KeysResultsCommands available on the results screen
Trait Implementations§
Source§impl Clone for KeysConfig
impl Clone for KeysConfig
Source§fn clone(&self) -> KeysConfig
fn clone(&self) -> KeysConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 KeysConfig
impl Debug for KeysConfig
Source§impl Default for KeysConfig
impl Default for KeysConfig
Source§fn default() -> KeysConfig
fn default() -> KeysConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeysConfig
impl<'de> Deserialize<'de> for KeysConfig
Source§fn 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
Source§impl PartialEq for KeysConfig
impl PartialEq for KeysConfig
Source§impl Serialize for KeysConfig
impl Serialize for KeysConfig
impl StructuralPartialEq for KeysConfig
Auto Trait Implementations§
impl Freeze for KeysConfig
impl RefUnwindSafe for KeysConfig
impl Send for KeysConfig
impl Sync for KeysConfig
impl Unpin for KeysConfig
impl UnsafeUnpin for KeysConfig
impl UnwindSafe for KeysConfig
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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