Content-Length: 13114 | pFad | https://doc.rust-lang.org/std/pin/../hash/../../std/sync/../../../std/../error_codes/./E0741.html

E0741 - 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 E0741

A non-structural-match type was used as the type of a const generic parameter.

Erroneous code example:

#![allow(unused)]
#![feature(adt_const_params)]

fn main() {
struct A;

struct B<const X: A>; // error!
}

Only structural-match types, which are types that derive PartialEq and Eq and implement ConstParamTy, may be used as the types of const generic parameters.

To fix the previous code example, we derive PartialEq, Eq, and ConstParamTy:

#![allow(unused)]
#![feature(adt_const_params)]

fn main() {
use std::marker::ConstParamTy;

#[derive(PartialEq, Eq, ConstParamTy)] // We derive both traits here.
struct A;

struct B<const X: A>; // 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/pin/../hash/../../std/sync/../../../std/../error_codes/./E0741.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy