keymaps/
config.rs

1// Copyright 2021 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Keymap configuration store.
6//!
7//! Used to load and store keymap configurations from configuration files.
8
9#[derive(Debug, Clone)]
10pub struct Metadata {
11    /// The identifier for this keymap. Should be unique across all accessible
12    /// keymaps.  Obviously, we'll need to work on that.
13    pub keymap_id: String,
14}