Lines Matching full:call
12 /// pointers) the type itself contains all necessary information to call the
13 /// function. This trait provides a `call` function that doesn't require `self`,
19 /// `F::call` or passing it to another function via `func::<F>`.
34 /// F::call((unsafe { &*(opaque.cast::<T>()) }, ))
60 /// F::call((s,))
69 /// used, except to decide what is `F` and what `F::call` does.
76 /// # F::call((s,))
88 /// Some(F::call((s,)))
97 /// Invoking `F::call` will then be a run-time error.
102 /// # F::call((s,))
131 /// F::call((s,))
151 /// F::call((s,))
168 /// Call the function with the arguments in args.
169 fn call(a: Args) -> R; in call() method
179 /// Call the function with the arguments in args.
180 fn call(_a: Args) -> R { in call() method
189 // allowed to call the function.
197 fn call(a: ($($args,)*)) -> R {
224 F::call(("hello world",)) in do_test_call()