Enum devd_rs::data::Event [] [src]

pub enum Event {
    Notify {
        system: String,
        subsystem: String,
        kind: String,
        data: BTreeMap<String, String>,
    },
    Attach {
        dev: String,
        parent: BTreeMap<String, String>,
        location: String,
    },
    Detach {
        dev: String,
        parent: BTreeMap<String, String>,
        location: String,
    },
    Nomatch {
        parent: BTreeMap<String, String>,
        location: String,
    },
}

Variants

Fields of Notify

Fields of Attach

Fields of Detach

Fields of Nomatch

Trait Implementations

impl Debug for Event
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Event
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for Event
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Event

impl Sync for Event