Lines Matching defs:MockFunction
175 pub fn build(self) -> MockFunction { in build()
377 pub(crate) struct MockFunction { struct
380 alifetimes: Punctuated<LifetimeParam, token::Comma>,
382 argnames: Vec<Pat>,
384 argty: Vec<Type>,
386 pub attrs: Vec<Attribute>,
388 call_exprs: Vec<TokenStream>,
390 call_generics: Generics,
392 call_vis: Visibility,
394 concretize: bool,
396 egenerics: Generics,
398 cgenerics: Generics,
400 fn_params: Vec<Ident>,
402 is_static: bool,
404 mod_ident: Ident,
406 output: Type,
411 owned_output: Type,
413 boxed: bool,
415 predexprs: Vec<TokenStream>,
439 impl MockFunction { argument