1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! //! This module is used in the mocks generated by `mockiato-codegen`. //! It may change at any time. Do not use this module directly. //! pub use self::arguments::Arguments; pub use self::fmt::MaybeDebugWrapper; pub use self::matcher::{ArgumentMatcher, ArgumentsMatcher}; pub use self::method::Method; pub use self::method_call::MethodCallBuilder; pub(crate) mod argument; mod arguments; pub(crate) mod expected_calls; mod fmt; pub(crate) mod matcher; mod method; mod method_call; mod return_value;