The version of the call operator that takes a by-snapshot receiver. Instances ofDocumentation Index
Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
Use this file to discover all available pages before exploring further.
Fn can be called repeatedly.
Fn is implemented automatically by closures whose captured variables are all Copy.
Additionally, for any type F that implements Fn, @F implements Fn, too.
Since FnOnce is implemented for all implementers of Fn, any instance of Fn can be used
as a parameter where a FnOnce is expected.
Use Fn as a bound when you want to accept a parameter of function-like type and need to call
it repeatedly. If you do not need such strict requirements, use FnOnce as bounds.