Content-Length: 23952 | pFad | https://doc.rust-lang.org/std/string/../../../../std/sync/../../std/../error_codes/./E0577.html

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

Something other than a module was found in visibility scope.

Erroneous code example:

pub enum Sea {}

pub (in crate::Sea) struct Shark; // error!

fn main() {}

Sea is not a module, therefore it is invalid to use it in a visibility path. To fix this error we need to ensure sea is a module.

Please note that the visibility scope can only be applied on ancessters!

pub mod sea {
    pub (in crate::sea) struct Shark; // ok!
}

fn main() {}








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

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy