Struct zvariant::SerializeValue[][src]

pub struct SerializeValue<'a, T: Type + Serialize>(pub &'a T);
Expand description

A wrapper to serialize T: Type + Serialize as a value.

When the type of a value is well-known, you may avoid the cost and complexity of wrapping to a generic Value and instead use this wrapper.

let _ = to_bytes(ctxt, &SerializeValue(&[0, 1, 2])).unwrap();

Tuple Fields

0: &'a T

Trait Implementations

Serialize this value into the given Serde serializer. Read more

Get the signature for the implementing type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.