Allow attributes in function return type position. For example:
u8
Motivation
Currently the whole function can be annotated with a macro attribute:
As well as individual function parameters (introduced in RFC2565):
However function return types currently cannot be annotated, which forces domain-specific languages (DSLs) to resort to function attributes, for example:
Return type attributes would allow the above example to be changed to:
The resulting DSL is clearer to read ... in particular in functions with many
parameters where the function attribute would be several lines apart from the
return type (because rustfmt by default puts each parameter on its own line
when the function signature gets too long).
Since function parameters already can be annotated this can be regarded as the next logical step towards more expressive and intuitive DSLs. The motivation for the introduction of parameter attributes outlined in RFC2565 largely applies to return type attributes as well, since they would also be useful for property based testing, interoperability with other languages and optimization annotations.
Guide-level explanation
Return types of fn definitions as well as closures may have attributes
attached to them. Thereby, additional information may be provided.
For the purposes of illustration, let's assume we have the attribute
#[apple] available to us.
Basic examples
The syntax for attaching attributes to return types is shown in the snippet below:
// Free functions:
u32
Trait definitions
An fn definition doesn't need to have a body to permit return type attributes.
Thus, in trait definitions, we may write:
fn types
You can also use attributes in function pointer types. For example, you may write:
type Foo = fn u8;
Unit return type
When annotating the unit return type () must be specified explicitly. For
example:
Attempting the following:
will result in a compile error:
error: return type attributes require an explicit return type
fn foo() -> #[apple] {
^ expected ()
Built-in attributes
Attributes attached to return types do not have an inherent meaning in the type system or in the language. Instead, the meaning is what your procedural macros, the tools you use, or what the compiler interprets certain specific attributes as.
As for the built-in attributes and their semantics, we will, for the time being, only permit the following attributes on return types:
- Lint check attributes, that is:
#[allow(C)],#[warn(C)],#[deny(C)],#[forbid(C)], and tool lint attributes such as#[allow(clippy::foobar)].
All other built-in attributes will be rejected with a semantic check. For example, you may not write:
u32
Reference-level explanation
TODO
Drawbacks
All drawbacks for attributes in any location also count for this proposal.
Having attributes in many different places of the language complicates its grammar.
Rationale and alternatives
Why is this design the best in the space of possible designs?
If function parameters can be annotated it is only natural that function return types can be annotated as well.
What other designs have been considered and what is the rationale for not choosing them?
Using a function attribute to annotate the return type can result in the annotation being far apart from the type that it's annotating, as showcased in the Motivation section.
RFC2602 suggests permitting attributes to be attached to any types, so implementing that RFC would also permit return types to be annotated with attributes. The concern that has however been raised with that approach is that permitting attributes nearly everywhere would undesirably increase the cognitive load needed to read Rust code and thus harm the readability of Rust. Currently attributes are restricted to specific positions. Allowing them anywhere (even in nested types) would pose a more radical change, whereas this RFC is more of a continuation of the status quo by just permitting attributes in one more specific position.
What is the impact of not doing this?
DSLs cannot take advantage of the additional expressiveness.
Prior art
Parameter attributes were introduced to Rust with RFC2565.
Unresolved questions
Are there more built-in attributes that should be permitted for return types?
Is there precedent of other programming languages permitting return type annotations to be placed directly in front of the return type?
Future possibilities
If rustdoc one day supports documentation comments on parameters, it could
also support documentation comments on return types.