Struct libreda_db::layout::hashmap_layout::Layout[][src]

pub struct Layout<C: CoordinateType> { /* fields omitted */ }

Data structure which holds cells and cell instances.

Examples

use libreda_db::prelude::*;
let layout = Layout::new();

Trait Implementations

impl<C: Debug + CoordinateType> Debug for Layout<C>[src]

impl<C: Default + CoordinateType> Default for Layout<C>[src]

impl<C: CoordinateType> LayoutBase for Layout<C>[src]

type Coord = C

Number type used for coordinates.

type NameType = RcString

Type for names of circuits, instances, pins, etc.

type LayerId = LayerId

Layer identifier type.

type CellId = CellId<C>

Cell/module identifier type.

type CellInstId = CellInstId<C>

Cell instance identifier type.

impl<C: CoordinateType> LayoutEdit for Layout<C>[src]

Auto Trait Implementations

impl<C> !RefUnwindSafe for Layout<C>

impl<C> !Send for Layout<C>

impl<C> !Sync for Layout<C>

impl<C> Unpin for Layout<C> where
    C: Unpin

impl<C> UnwindSafe for Layout<C> where
    C: UnwindSafe

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.