substrate::schematic::pex

Trait StringPathSchema

Source
pub trait StringPathSchema: Schema {
    // Required method
    fn node_path(
        lib: &Library<Self>,
        conv: &NetlistLibConversion,
        path: &SliceOnePath,
    ) -> String;
}
Expand description

A schema that can convert element paths to strings.

Required Methods§

Source

fn node_path( lib: &Library<Self>, conv: &NetlistLibConversion, path: &SliceOnePath, ) -> String

Convert a node path to a raw string.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§