1
2
3
4
5
use crate::{Envelope, EnvelopeEncodable};

pub trait EnvelopeCodable { }

impl<T> EnvelopeCodable for T where T: TryFrom<Envelope> + EnvelopeEncodable { }