Skip to main content

FromMessagePackOwned

Trait FromMessagePackOwned 

Source
pub trait FromMessagePackOwned: for<'a> FromMessagePack<'a> { }
Expand description

A trait for types that can be deserialized from MessagePack format without borrowing.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> FromMessagePackOwned for T
where T: for<'a> FromMessagePack<'a>,