1//! Argument types and utilities for working with [`DynamicFunction`] and [`DynamicFunctionMut`]. 2//! 3//! [`DynamicFunction`]: crate::func::DynamicFunction 4//! [`DynamicFunctionMut`]: crate::func::DynamicFunctionMut 5 6pub use arg::*; 7pub use count::*; 8pub use error::*; 9pub use from_arg::*; 10pub use info::*; 11pub use list::*; 12pub use ownership::*; 13 14mod arg; 15mod count; 16mod error; 17mod from_arg; 18mod info; 19mod list; 20mod ownership; 21 22