pub trait TryFromCSL<T> {
// Required method
fn try_from_csl(value: &T) -> Result<Self, TryFromCSLError>
where Self: Sized;
}
Expand description
Convert a cardano-serialization-lib type to its plutus-ledger-api counterpart
pub trait TryFromCSL<T> {
// Required method
fn try_from_csl(value: &T) -> Result<Self, TryFromCSLError>
where Self: Sized;
}
Convert a cardano-serialization-lib type to its plutus-ledger-api counterpart