[][src]Struct liberty_parse::liberty::Pin

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

pin group of a Cell

Fields

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

Methods

impl Pin[src]

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

Create a pin with empty attributes and sub-groups

Trait Implementations

impl FromGroup for Pin[src]

type Item = Pin

impl ToGroup for Pin[src]

type Item = Pin

impl Clone for Pin[src]

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

Performs copy-assignment from source. Read more

impl PartialEq<Pin> for Pin[src]

impl Debug for Pin[src]

Auto Trait Implementations

impl Sync for Pin

impl Unpin for Pin

impl Send for Pin

impl UnwindSafe for Pin

impl RefUnwindSafe for Pin

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]