Trait rustpython_compiler_core::marshal::Dumpable
source · pub trait Dumpable: Sized {
type Error;
type Constant: Constant;
// Required method
fn with_dump<R>(
&self,
f: impl FnOnce(DumpableValue<'_, Self>) -> R
) -> Result<R, Self::Error>;
}