pub trait InspectData<T> {
    // Required method
    fn new(object: &T, inspect: Node) -> Self;
}
Expand description

Represents inspect data that is tied to a specific object. This inspect data and the object of type T should always be bundled together.

Required Methods§

source

fn new(object: &T, inspect: Node) -> Self

Object Safety§

This trait is not object safe.

Implementors§