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,