[][src]Struct verilog_filelist_parser::Filelist

pub struct Filelist {
    pub files: Vec<PathBuf>,
    pub incdirs: Vec<PathBuf>,
    pub defines: HashMap<String, Option<String>>,
    pub comments_present: bool,
    pub unknowns_present: bool,
}

Represents a Verilog Filelist

Fields

files: Vec<PathBuf>

List of all files

incdirs: Vec<PathBuf>

List of all Include Directories

defines: HashMap<String, Option<String>>

HashMap of all Defines

comments_present: bool

True if comments are present in the filelist

unknowns_present: bool

True if unknown arguments are present in the filelist

Methods

impl Filelist[src]

pub fn new() -> Filelist[src]

Returns an empty Filelist

pub fn extend(&mut self, other: Filelist)[src]

Adds the elements of the other filelist to the current filelist

Trait Implementations

impl Debug for Filelist[src]

impl Default for Filelist[src]

impl PartialEq<Filelist> for Filelist[src]

impl StructuralPartialEq for Filelist[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.