[][src]Struct libchisel::imports::ImportList

pub struct ImportList<'a>(_);

Methods

impl<'a> ImportList<'a>[src]

pub fn new() -> Self[src]

pub fn entries(&'a self) -> &'a Vec<ImportType<'a>>[src]

pub fn entries_mut(&'a mut self) -> &'a mut Vec<ImportType<'a>>[src]

pub fn into_inner(self) -> Vec<ImportType<'a>>[src]

pub fn concatenate(&mut self, other: ImportList<'a>)[src]

pub fn with_entries(entries: Vec<ImportType<'a>>) -> Self[src]

pub fn lookup_by_field(&self, name: &str) -> Option<&ImportType>[src]

Trait Implementations

impl<'a> ModulePreset for ImportList<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ImportList<'a>

impl<'a> Send for ImportList<'a>

impl<'a> Sync for ImportList<'a>

impl<'a> Unpin for ImportList<'a>

impl<'a> UnwindSafe for ImportList<'a>

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.