We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In
#[feature(default_type_params)]; #[crate_id="deftypar"]; #[crate_type="lib"]; /// Docs... pub struct Foo<A = int>;
Foo gets rendered as
Foo
pub struct Foo<A>; Docs...
pub struct Foo<A>;
Docs...
but it should definitely be mentioning the = int part.
= int