pub trait LicenseCache:
Sync
+ Send
+ Debug
+ RefUnwindSafe {
// Required methods
fn get_license(
&self,
license_info: LicenseInformation,
) -> ConnectorResult<Option<Vec<u8>>>;
fn store_license(
&self,
license_info: LicenseInformation,
) -> ConnectorResult<()>;
}