Content-Length: 24382 | pFad | https://doc.rust-lang.org/std/string/../error/../string/../thread/../../../error_codes/./E0561.html

E0561 - Error codes index

Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Error code E0561

A non-ident or non-wildcard pattern has been used as a parameter of a function pointer type.

Erroneous code example:

#![allow(unused)]
fn main() {
type A1 = fn(mut param: u8); // error!
type A2 = fn(&param: u32); // error!
}

When using an alias over a function type, you cannot e.g. denote a parameter as being mutable.

To fix the issue, remove patterns (_ is allowed though). Example:

#![allow(unused)]
fn main() {
type A1 = fn(param: u8); // ok!
type A2 = fn(_: u32); // ok!
}

You can also omit the parameter name:

#![allow(unused)]
fn main() {
type A3 = fn(i16); // ok!
}








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://doc.rust-lang.org/std/string/../error/../string/../thread/../../../error_codes/./E0561.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy