Content-Length: 24488 | pFad | https://doc.rust-lang.org/std/string/../error/../string/../iter/../../error_codes/./E0325.html

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

An associated type was implemented when another trait item was expected.

Erroneous code example:

#![allow(unused)]
fn main() {
struct Bar;

trait Foo {
    const N : u32;
}

impl Foo for Bar {
    type N = u32;
    // error: item `N` is an associated type, which doesn't match its
    //        trait `<Bar as Foo>`
}
}

Please verify that the associated type name wasn’t misspelled and your implementation corresponds to the trait definition. Example:

#![allow(unused)]
fn main() {
struct Bar;

trait Foo {
    type N;
}

impl Foo for Bar {
    type N = u32; // ok!
}
}

Or:

#![allow(unused)]
fn main() {
struct Bar;

trait Foo {
    const N : u32;
}

impl Foo for Bar {
    const N : u32 = 0; // 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/../iter/../../error_codes/./E0325.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy