Trait cu29_traits::CopperListPayload

source ·
pub trait CopperListPayload:
    Encode
    + Decode
    + Sized
    + Debug { }
Expand description

A CopperListPayload needs to be encodable, decodable and fixed size in memory.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> CopperListPayload for T
where T: Encode + Decode + Debug + Sized,