device_types/
udev.rs

1// Copyright (c) 2020 DDN. All rights reserved.
2// Use of this source code is governed by a MIT-style
3// license that can be found in the LICENSE file.
4
5use crate::uevent;
6
7#[derive(Debug, PartialEq, serde::Serialize, serde::Deserialize)]
8pub enum UdevCommand {
9    Add(uevent::UEvent),
10    Change(uevent::UEvent),
11    Remove(uevent::UEvent),
12}