Trait sample_std::recursive::Recursion
source · pub trait Recursion {
type Output;
// Required method
fn recurse(
&self,
g: &mut Random,
inner: RecursiveSampler<Self>
) -> Self::Output
where Self: Sized;
}