Trait dbus::arg::Arg [] [src]

pub trait Arg {
    fn arg_type() -> ArgType;
    fn signature() -> Signature<'static>;
}

Types that can represent a D-Bus message argument implement this trait.

Types should also implement either Append or Get to be useful.

Required Methods

The corresponding D-Bus argument type code.

The corresponding D-Bus type signature for this type.

Implementors