8.16 Summary
In this chapter, we explored how functions operate in Rust. We covered:
main
: The compulsory entry point for Rust executables.- Basic Function Definition and Calling: Declaring parameters, return types, and calling functions in any file order.
- Parameters and Return Types: Why explicit parameter types matter, and how to specify return types (or rely on
()
if none is specified). return
Keyword and Implicit Returns: How Rust can infer the return value from the last expression.- Function Scope and Nested Functions: Visibility rules for top-level and inner functions.
- Default Parameters and Named Arguments: Rust does not have them, but you can mimic them with
Option<T>
or the builder pattern. - Slices and Tuples: Passing partial views of data and small groups of different data types.
- Generics: Using traits like
PartialOrd
to write functions that work for various types. - Function Pointers and Higher-Order Functions: Passing functions or closures as parameters for flexible code.
- Recursion and TCO: Rust supports recursion but does not guarantee tail call optimization.
- Inlining: Suggesting inline expansions with
#[inline]
, which the compiler may or may not apply. - Method Syntax and Associated Functions: Leveraging
impl
blocks to define methods and associated functions for a type. - Function Overloading: Rust does not allow multiple functions of the same name based on parameter differences.
- Type Inference: Requires explicit return types in most cases, though
impl Trait
can hide complex types. - Variadic Functions and Macros: Rust lacks direct support for variadic functions but provides macros for similar functionality.
- Returning Mutable References: Permitted when lifetimes ensure the references remain valid.
- Ignoring Return Values: Usually allowed, but ignoring certain types (like
Result
) may produce warnings.
By emphasizing clarity, safety, and explicit ownership and borrowing rules, Rust’s approach to functions provides a strong foundation for structuring and reusing code. Functions are central to Rust, from simple utilities to large-scale application design. As you advance, you will encounter closures, async functions, and other library patterns that rely on these fundamental concepts.