[][src]Trait liberty_parse::liberty::FromGroup

pub trait FromGroup {
    type Item;
    fn from_group(group: Group) -> Self::Item;
}

Convert a general Group into a more specific type

Implemented by Pin, Cell, or Library

Associated Types

type Item

Loading content...

Required methods

fn from_group(group: Group) -> Self::Item

Loading content...

Implementors

impl FromGroup for Cell[src]

type Item = Cell

impl FromGroup for Library[src]

type Item = Library

impl FromGroup for Pin[src]

type Item = Pin

Loading content...