//! Contains a generated example for the mocked types.
#![allow(unused)]usecrate::mock;/// Simple test trait to generate a mocked version for.
pubtraitFuu{/// Simple method to generate a mocked version for.
fnfuu(&self, x:usize)->usize;}mock!{/// Type the implements the [`Fuu`] trait.
#[derive(Default, Debug)]pubstructMyStruct;implFuu forMyStruct{fnfuu(&self, x:usize)->usize;}}