Skip to main content

StateCodec

Trait StateCodec 

Source
pub trait StateCodec:
    Sized
    + Send
    + 'static
    + Serialize
    + DeserializeOwned { }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> StateCodec for T
where T: Sized + Send + 'static + Serialize + DeserializeOwned,