Struct cheddar::ImportList[][src]

pub struct ImportList {
    pub module: ModulePath,
    pub list: Vec<ModuleSymbol>,
}

A non-empty import list.

It consists of a module path, like Foo.Bar.Zoo, and a list of symbols to load from that path, as in rick, marty, doggo.

Fields

The module path to load symbols from.

List of symbols to import.

Methods

impl ImportList
[src]

Generate a PathBuf that represents this import on disk.

Trait Implementations

impl Clone for ImportList
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ImportList
[src]

Formats the value using the given formatter. Read more

impl Eq for ImportList
[src]

impl PartialEq for ImportList
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for ImportList

impl Sync for ImportList