pub unsafe trait FixedArray: Arg + 'static + Clone + Copy { }
Expand description

If a type implements this trait, it means the size and alignment is the same as in D-Bus. This means that you can quickly append and get slices of this type.

Note: Booleans do not implement this trait because D-Bus booleans are 4 bytes and Rust booleans are 1 byte.

Implementations on Foreign Types

Implementors