[][src]Trait dbus_tree::DataType

pub trait DataType: Sized + Default {
    type Tree: Debug;
    type ObjectPath: Debug;
    type Property: Debug;
    type Interface: Debug;
    type Method: Debug;
    type Signal: Debug;
}

Associated data for different objects in a tree.

These currently require a debug bound, due to https://github.com/rust-lang/rust/issues/31518

Associated Types

type Tree: Debug

Type of associated data on the Tree.

type ObjectPath: Debug

Type of associated data on every ObjectPath.

type Property: Debug

Type of associated data on every Property.

type Interface: Debug

Type of associated data on every Interface.

type Method: Debug

Type of associated data on every Method.

type Signal: Debug

Type of associated data on every Signal.

Loading content...

Implementations on Foreign Types

impl DataType for ()[src]

No associated data for the tree.

type Tree = ()

type ObjectPath = ()

type Interface = ()

type Property = ()

type Method = ()

type Signal = ()

Loading content...

Implementors

Loading content...