Trait dbus::arg::Append[][src]

pub trait Append {
    fn append_by_ref(&self, _: &mut IterAppend<'_>);

    fn append(self, ia: &mut IterAppend<'_>)
    where
        Self: Sized
, { ... } }
Expand description

Types that can be appended to a message as arguments implement this trait.

Required methods

Performs the append operation by borrowing self.

Provided methods

Performs the append operation by consuming self.

Implementations on Foreign Types

Appends a D-Bus array. Note: In case you have a large array of a type that implements FixedArray, using this method will be more efficient than using an Array.

Implementors