You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Functions are the primary way code is executed within Rust. Function blocks, usually just
115
-
called functions, can be defined in a variety of different places and be assigned many
116
-
different attributes and modifiers.
113
+
Functions are the primary way code is executed within Rust. Function blocks, usually just called functions, can be defined in a variety of different places and be assigned many different attributes and modifiers.
117
114
118
-
Standalone functions that just sit within a module not attached to anything else are common,
119
-
but most functions will end up being inside impl blocks, either on another type itself, or
120
-
as a trait impl for that type.
115
+
Standalone functions that just sit within a module not attached to anything else are common, but most functions will end up being inside impl blocks, either on another type itself, or as a trait impl for that type.
121
116
122
117
fn standalone_function() {
123
118
// code
@@ -140,9 +135,7 @@ book] or the [Reference].
140
135
}
141
136
}
142
137
143
-
In addition to presenting fixed types in the form of fn name(arg: type, ..) -> return_type,
144
-
functions can also declare a list of type parameters along with trait bounds that they fall
145
-
into.
138
+
In addition to presenting fixed types in the form of fn name(arg: type, ..) -> return_type, functions can also declare a list of type parameters along with trait bounds that they fall into.
Declaring trait bounds in the angle brackets is functionally identical to using a where
158
-
clause. It's up to the programmer to decide which works better in each situation, but where
159
-
tends to be better when things get longer than one line.
150
+
Declaring trait bounds in the angle brackets is functionally identical to using a where clause. It's up to the programmer to decide which works better in each situation, but where tends to be better when things get longer than one line.
160
151
161
-
Along with being made public via pub, fn can also have an extern added for use in
162
-
FFI.
152
+
Along with being made public via pub, fn can also have an extern added for use in FFI.
163
153
164
-
For more information on the various types of functions and how they're used, consult the Rust
165
-
book or the Reference."#]].assert_eq(&res);
154
+
For more information on the various types of functions and how they're used, consult the Rust book or the Reference."#]].assert_eq(&res);
0 commit comments