fuchsia_bluetooth::inspect

Trait InspectData

Source
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

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§