pub trait CstDecode<T> {
    // Required method
    fn cst_decode(self) -> T;
}

Required Methods§

source

fn cst_decode(self) -> T

Implementations on Foreign Types§

source§

impl<T, S> CstDecode<Option<T>> for *mut S
where *mut S: CstDecode<T>,

source§

fn cst_decode(self) -> Option<T>

Implementors§