[][src]Struct liberty_parse::liberty::Library

pub struct Library {
    pub name: String,
    pub simple_attributes: HashMap<String, Value>,
    pub complex_attributes: HashMap<String, Vec<Value>>,
    pub groups: Vec<Group>,
    pub cells: HashMap<String, Cell>,
}

Top-level library group

Every liberty file defines a library at the top-most level. Libraries contain attributes, groups, and Cells.

Fields

name: Stringsimple_attributes: HashMap<String, Value>complex_attributes: HashMap<String, Vec<Value>>groups: Vec<Group>cells: HashMap<String, Cell>

Methods

impl Library[src]

pub fn new(name: &str) -> Self[src]

Trait Implementations

impl FromGroup for Library[src]

type Item = Library

impl ToGroup for Library[src]

type Item = Library

impl Clone for Library[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Library> for Library[src]

impl Debug for Library[src]

Auto Trait Implementations

impl Sync for Library

impl Send for Library

impl Unpin for Library

impl RefUnwindSafe for Library

impl UnwindSafe for Library

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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