pub trait LayoutEditUtil: LayoutEdit {
    fn find_or_create_layer(
        &mut self,
        index: u32,
        datatype: u32
    ) -> Self::LayerId { ... } }
Expand description

Helper functions for layouts.

This trait is automatically implemented for all types which implement LayoutEdit.

Provided methods

Create a layer or return an existing one.

Implementors