fuel_vm::interpreter::diff

Trait AnyDebug

Source
pub trait AnyDebug: Any + Debug {
    // Required method
    fn as_any_ref(&self) -> &dyn Any;
}
Expand description

A trait that combines the Debug and Any traits.

Required Methods§

Source

fn as_any_ref(&self) -> &dyn Any

Returns a reference to the underlying type as Any.

Implementors§

Source§

impl<T> AnyDebug for T
where T: Any + Debug,