1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::ur::UR;

use dcbor::CBORTaggedEncodable;

/// A type that can be encoded to a UR.
pub trait UREncodable: CBORTaggedEncodable {
    /// Returns the UR representation of the object.
    fn ur(&self) -> UR {
        UR::new(Self::CBOR_TAG.name().as_ref().unwrap(), &self.untagged_cbor()).unwrap()
    }

    /// Returns the UR string representation of the object.
    fn ur_string(&self) -> String {
        self.ur().string()
    }
}