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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

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.