pub trait ToPLA<T> {
    // Required method
    fn to_pla(&self) -> T;
}

Required Methods§

source

fn to_pla(&self) -> T

Implementors§

source§

impl<T, U> ToPLA<U> for T
where U: FromCSL<T>,