keymaps/
config.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

//! Keymap configuration store.
//!
//! Used to load and store keymap configurations from configuration files.

#[derive(Debug, Clone)]
pub struct Metadata {
    /// The identifier for this keymap. Should be unique across all accessible
    /// keymaps.  Obviously, we'll need to work on that.
    pub keymap_id: String,
}