[][src]Struct liberty_parse::liberty::Cell

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

cell group of a Library

Fields

name: Stringsimple_attributes: HashMap<String, Value>complex_attributes: HashMap<String, Vec<Value>>groups: Vec<Group>pins: HashMap<String, Pin>

Methods

impl Cell[src]

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

Create a cell with empty attributes and sub-groups

Trait Implementations

impl FromGroup for Cell[src]

type Item = Cell

impl ToGroup for Cell[src]

type Item = Cell

impl Clone for Cell[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Cell> for Cell[src]

impl Debug for Cell[src]

Auto Trait Implementations

impl Sync for Cell

impl Unpin for Cell

impl Send for Cell

impl UnwindSafe for Cell

impl RefUnwindSafe for Cell

Blanket Implementations

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

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> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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