plutus_ledger_api::csl::pla_to_csl

Trait TryToCSL

Source
pub trait TryToCSL<T> {
    // Required method
    fn try_to_csl(&self) -> Result<T, TryFromPLAError>;
}
Expand description

Convert a plutus-ledger-api type to its cardano-serialization-lib counterpart try_to_csl_with accepts extra data where the PLA data itself is not enough

DO NOT IMPLEMENT THIS DIRECTLY. Implement TryFromPLA instead.

Required Methods§

Implementors§

Source§

impl<T, U> TryToCSL<U> for T
where U: TryFromPLA<T>,