W3cubDocs

/Rust

Error code E0735

Type parameter defaults cannot use Self on structs, enums, or unions.

Erroneous code example:

#![allow(unused)]
fn main() {
struct Foo<X = Box<Self>> {
    field1: Option<X>,
    field2: Option<X>,
}
// error: type parameters cannot use `Self` in their defaults.
}

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/error_codes/E0735.html