pub trait Structure<T> {
    // Required method
    fn structure(value: T) -> String;
}
Expand description

trait that denotes that the struct is likely paired with other structs to create a structure(E.G: urdf)

Required Methods§

source

fn structure(value: T) -> String

returns the name of the structure this struct refers to.

Object Safety§

This trait is not object safe.

Implementors§