This crate provides API for encoding/decoding of data to/from D-Bus wire format. This binary wire format is simple and very efficient and hence useful outside of D-Bus context as well. A modified form of this format, [GVariant] is very commonly used for efficient storage of arbitrary data and is also supported by this crate.
Since version 2.0, the API is [serde]-based and hence you'll find it very intuitive if you're already familiar with serde. If you're not familiar with serde, you may want to first read its [tutorial] before learning further about this crate.
Status: Stable.
Serialization and deserialization is achieved through the [toplevel functions]:
```rust use std::collections::HashMap; use zvariant::{EncodingContext as Context, fromslice, tobytes, Type}; use serde::{Deserialize, Serialize}; use byteorder::LE;
// All serialization and deserialization API, needs a context.
let ctxt = Context::
// i16 let encoded = tobytes(ctxt, &42i16).unwrap(); let decoded: i16 = fromslice(&encoded, ctxt).unwrap(); assert_eq!(decoded, 42);
// strings let encoded = tobytes(ctxt, &"hello").unwrap(); let decoded: &str = fromslice(&encoded, ctxt).unwrap(); assert_eq!(decoded, "hello");
// tuples let t = ("hello", 42i32, true); let encoded = tobytes(ctxt, &t).unwrap(); let decoded: (&str, i32, bool) = fromslice(&encoded, ctxt).unwrap(); assert_eq!(decoded, t);
// Vec let v = vec!["hello", "world!"]; let encoded = tobytes(ctxt, &v).unwrap(); let decoded: Vec<&str> = fromslice(&encoded, ctxt).unwrap(); assert_eq!(decoded, v);
// Dictionary
let mut map: HashMap
// derive macros to handle custom types.
struct Struct<'s> { field1: u16, field2: i64, field3: &'s str, }
asserteq!(Struct::signature(), "(qxs)");
let s = Struct {
field1: 42,
field2: i64::maxvalue(),
field3: "hello",
};
let ctxt = Context::
// It can handle enums too, just that all variants must have the same number and types of fields.
// Names of fields don't matter though. You can make use of Value
or OwnedValue
if you want to
// encode different data in different fields.
enum Enum<'s> { Variant1 { field1: u16, field2: i64, field3: &'s str }, Variant2(u16, i64, &'s str), Variant3 { f1: u16, f2: i64, f3: &'s str }, }
// Enum encoding uses a u32
to denote the variant index. For unit-type enums that's all that's
// needed so the signature is just u
but complex enums are encoded as a structure whose first
// field is the variant index and the second one is the field(s).
asserteq!(Enum::signature(), "(u(qxs))");
let e = Enum::Variant3 {
f1: 42,
f2: i64::maxvalue(),
f3: "hello",
};
let encoded = tobytes(ctxt, &e).unwrap();
let decoded: Enum = fromslice(&encoded, ctxt).unwrap();
assert_eq!(decoded, e);
// W/o repr
spec, u32
is assumed.
enum UnitEnum { Variant1, Variant2, Variant3, }
asserteq!(UnitEnum::signature(), "y"); let encoded = tobytes(ctxt, &UnitEnum::Variant2).unwrap(); let e: UnitEnum = fromslice(&encoded, ctxt).unwrap(); asserteq!(e, UnitEnum::Variant2);
// Unit enums can also be (de)serialized as strings.
enum StrEnum { Variant1, Variant2, Variant3, }
assert_eq!(StrEnum::signature(), "s"); ```
Apart from the obvious requirement of [EncodingContext
] instance by the main serialization and
deserialization API, the type being serialized or deserialized must also implement Type
trait in addition to [Serialize
] or [Deserialize
], respectively. Please refer to [Type
module documentation] for more details.
Most of the [basic types] of D-Bus match 1-1 with all the primitive Rust types. The only two
exceptions being, [Signature
] and [ObjectPath
], which are really just strings. These types
are covered by the [Basic
] trait.
Similarly, most of the [container types] also map nicely to the usual Rust types and
collections (as can be seen in the example code above). The only note worthy exception being
ARRAY type. As arrays in Rust are fixed-sized, serde treats them as tuples and so does this
crate. This means they are encoded as STRUCT type of D-Bus. If you need to serialize to, or
deserialize from a D-Bus array, you'll need to use a [slice] (array can easily be converted to a
slice), a [Vec
] or an [arrayvec::ArrayVec
].
D-Bus string types, including [Signature
] and [ObjectPath
], require one additional
restriction that strings in Rust do not. They must not contain any interior null bytes ('\0'
).
Encoding/Decoding strings that contain this character will return an error.
The generic D-Bus type, VARIANT
is represented by Value
, an enum that holds exactly one
value of any of the other types. Please refer to [Value
module documentation] for examples.
While std
is currently a hard requirement, optional no-std
support is planned in the future.
On the other hand, noalloc
support is not planned as it will be extremely difficult to
accomplish. However, community contribution can change that. 😊
| Feature | Description |
| --- | ----------- |
| arrayvec | Implement Type
for [arrayvec::ArrayVec
] and [arrayvec::ArrayString
] |
| enumflags2 | Implement Type
for [struct@enumflags2::BitFlags<F>
] |