Trait dbus::arg::Append

source ·
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§