pub trait TryToPLA<T> {
    // Required method
    fn try_to_pla(&self) -> Result<T, TryFromCSLError>;
}

Required Methods§

Implementors§

source§

impl<T, U> TryToPLA<U> for T
where U: TryFromCSL<T>,