Content-Length: 24176 | pFad | https://doc.rust-lang.org/std/string/../error/../string/../../std/../error_codes/./E0405.html

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

The code refers to a trait that is not in scope.

Erroneous code example:

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

impl SomeTrait for Foo {} // error: trait `SomeTrait` is not in scope
}

Please verify that the name of the trait wasn’t misspelled and ensure that it was imported. Example:

#![allow(unused)]
fn main() {
#[cfg(for_demonstration_only)]
// solution 1:
use some_file::SomeTrait;

// solution 2:
trait SomeTrait {
    // some functions
}

struct Foo;

impl SomeTrait for Foo { // ok!
    // implements functions
}
}








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/../../std/../error_codes/./E0405.html

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy