1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
// Copyright (c) 2019 DDN. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

use crate::uevent;

#[derive(Debug, PartialEq, serde::Serialize, serde::Deserialize)]
pub enum UdevCommand {
    Add(uevent::UEvent),
    Change(uevent::UEvent),
    Remove(uevent::UEvent),
}