SchemaReadOwned

Trait SchemaReadOwned 

Source
pub trait SchemaReadOwned: for<'de> SchemaRead<'de> { }
Expand description

A type that can be read (deserialized) from a Reader without borrowing from it.

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> SchemaReadOwned for T
where T: for<'de> SchemaRead<'de>,