dcbor/
cbor_tagged_codable.rs

1use crate::{CBORTaggedEncodable, CBORTaggedDecodable};
2
3/// A type that can be encoded to or from CBOR with a specific tag.
4pub trait CBORTaggedCodable { }
5
6impl<T> CBORTaggedCodable for T where T: CBORTaggedEncodable + CBORTaggedDecodable { }