Trait dbus::arg::FixedArray [] [src]

pub unsafe trait FixedArray: Arg { }

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.

Implementors